Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Project Dependencies

Each project (dependencies, etc.) must be able to be managed from within the Eclipse IDE without manually editing build.xml files. It must be possible for each project to export a build.xml Ant file such that

  • It can be used to build all appropriate targets from a command line using CVS and Ant
  • It must not use any absolute class names
  • It must not require eclipse-specific jar files (only stated dependencies)
  • It must build when eclipse is not installed
  • It must be able to build both release and debug targets
  • Targets
    • jar for any consumable component
    • war file for WS deployable components
    • javadoc
    • eclipse plugin

Back to the top