What is the Order and Export Tab in the Java Build Path

What is the Order and Export tab in the Java build path

+43
java eclipse dependencies buildpath
Apr 29 '10 at 13:03 on
source share
2 answers

This allows you to do two things:

  • Determine the order in which projects and libraries appear in the classpath. If there are any duplicate classes, this determines which version is loaded.
  • Determine which projects and libraries will be exported and therefore available in other projects that depend on it.
+32
Apr 29 '10 at 13:11
source share

Here's a hint for you:

Order and export. An order in which projects and libraries are displayed in the assembly path and the path to the default execution classes; for example, using classes from a workspace project before using the same classes from the archive library.

Found it on informit.com

+4
Apr 29 '10 at
source share



All Articles