Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.
How Autobuild Gets Dependencies
{{#eclipseproject:technology.higgins|eclipse_custom_style.css}}
- 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.xml
- Checks whether the project already present at the location specified by buildDirectory property
- If project doesn't exist yet, try to check it out using CVS/SVN location of the project defined in org.eclipse.higgins.auto/runtime/resourceLocation.xml
- Parses dependencies.xml of checked out project
- Iterates through each <remoteLibs> element
- Iterates through each <library> element.
- Checks whether library with file name specified by id attribute of <library> element already present at the location specified by the location attribute of the <remoteLibs> element
- If library doesn't exist yet try to download and unpack it if necessary using library location specified in the org.eclipse.higgins.auto/runtime/resourceLocation.xml
- Iterates through each project <higginsProjects> element and checks out all of them by repeating the above 4 steps
- run other targets to complete the build