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:55, 17 March 2009 by Csanchez.exist.com (Talk | contribs)

(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)

At some point the build is redirected to all the IBuilderDelegate objects configured

  • MavenJdtBuilderDelegate
  • ResourceBuilderDelegate


Incremental build

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

The delegates are called with onResourceChange

Full build

The delegates are called with onFullBuild

Copyright © Eclipse Foundation, Inc. All Rights Reserved.