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

IAM Project Builder

Revision as of 16:51, 17 March 2009 by Csanchez.exist.com (Talk | contribs) (New page: The builder MavenIncrementalBuilder receives a request for building. The type of the request can be * AUTO_BUILD or INCREMENTAL_BUILD: we need to check what has changed * CLEAN_BUILD or F...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The builder MavenIncrementalBuilder receives a request for building. The type of the request can be

  • AUTO_BUILD or INCREMENTAL_BUILD: we need to check what has changed
  • CLEAN_BUILD or FULL_BUILD: no deltas, rebuild everything (not sure if there are differences between clean and full)

The pom is checked for modifications in handlePomUpdatesIfNeeded

  • if pom was not stored, then go to handlePomReplace
  • else check for changes in the content of the pom with handlePomChange


Then the build is redirected to all the IBuilderDelegate objects configured

  • MavenJdtBuilderDelegate
  • ResourceBuilderDelegate

Back to the top