Maven Project Parent POM

This POM is the common parent of all of the Maven components in the Apache Maven project. Most of its contents are pinning down version numbers of plugins. It does provide minimal dependencyManagement for org.codehaus.plexus:plexus-component-annotations and org.apache.maven.plugin-tools:maven-plugin-annotations.

This POM contains Maven developers information for the Project Team report, sorted by role and id. See the LDAP extract for more accurate committers and PMC members lists.

The reporting Profile

This POM provides reporting profile for rendering documentation during site generation:

mvn -Preporting site

See Plugins report for a list of configured report plugins.

Site Publication

This POM prepares site publication to svnpubsub. Every inheriting POM needs to define maven.site.path property with relative path to ${project.artifactId}-LATEST publication uri, and define distributionManagement to avoid automatic inheritance from parent:

  <properties>
    <maven.site.path>xxx-archives/maven-parent.-LATEST</maven.site.path>
  </properties>
  <distributionManagement>
    <site>
      <id>apache.website</id>
      <url>scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/${maven.site.path}</url>
    </site>
  </distributionManagement>

Once this is configured, the site is published with:

mvn -Preporting site site:stage
mvn scm-publish:publish-scm

See deploying Maven components reference documentation for more information.

History

As of version 21, this POM sets the Java source and target versions to 1.5. Thus, as any plugin (or other component) moved to version 21+ of this POM, it moves to requiring Java 1.5.

Version Release Date
26 (diff) 2014-11-13
25 (diff) 2014-10-22
24 (diff) 2014-03-27
23 (diff) 2013-01-21
22 (diff) 2012-08-08
21 (diff) 2011-08-18
20 (diff) 2011-06-15
19 (diff) 2011-02-15
18 (diff) 2010-11-26
17 (diff) 2010-11-04