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

How Autobuild Gets Dependencies

Revision as of 17:22, 15 October 2007 by Jjacob.parityinc.net (Talk | contribs) (New page: # Nightly build runs buildLoop target of autoBuild.xml script from org.eclipse.higgins.auto/runtime/ # buildLoop iterates through each project in org.eclipse.higgins.auto/runtime/projects....)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
  1. Nightly build runs buildLoop target of autoBuild.xml script from org.eclipse.higgins.auto/runtime/
  2. buildLoop iterates through each project in org.eclipse.higgins.auto/runtime/projects.xml and checks for the existence of the project at the cvs location of the project defined in org.eclipse.higgins.auto/runtime/resourceLocation.xml
  3. If the project exists then it will be checked out from cvs
  4. Downloads all 3rd party dependencies defined in dependencies.xml (<remoteLibs> element) of checked out project from the library location in the org.eclipse.higgins.auto/runtime/resourceLocation.xml
  5. Also checks out all the project dependencies defined in dependencies.xml (<higginsProjects> element) by repeating the above 3 steps
  6. run other targets to complete the build

Back to the top