9

Eclipse has a visual properties file tool for graphically composing you ant build.properties files. It makes reference to so-called "binary builds" as well as "source builds". The term source build makes sense: you're compiling sources.

"Binary builds" is throwing me off - is that referring to library (JAR) linking??

2 Answers 2

6
  • Binary build : The compiled sources and files which will be packaged in the plug-in.
  • Source build : Selected sources and files which will be packaged without compilation.

also see Feature Manifest Editor

Sign up to request clarification or add additional context in comments.

1 Comment

And the reason to build a `sources-jar file is, that you can easily attach the sources to the jar file, so that it is easier to debug: then you can jump to the real source code, including all comments. If you don't attach the sources, then Eclipse will just decompile the java-class files to make them readable.
-4

OK this one was a douzy - apparently Eclipse allows you to reverse compile your CLASS files back to Java files; this is also known as a "binary build" - you're literally building the bytecode back into source.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.