Search code examples
eclipsedependenciesbuildpathjava

What is the use of Order And Export tab in Java Build Path


What is the use of Order And Export tab in Java Build Path


Solution

  • It allows you to do two things:

    • Determine in which order 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 thus available in other projects that depend on this one.