Updated Branches: refs/heads/master bfcf03d42 -> 85eed72eb
In the canonical pom order, i.e. our pom.xml code style, <pluginManagement> comes before <plugins> Project: http://git-wip-us.apache.org/repos/asf/maven/repo Commit: http://git-wip-us.apache.org/repos/asf/maven/commit/85eed72e Tree: http://git-wip-us.apache.org/repos/asf/maven/tree/85eed72e Diff: http://git-wip-us.apache.org/repos/asf/maven/diff/85eed72e Branch: refs/heads/master Commit: 85eed72eb165e12a8f50927d199d9bd94b44a26c Parents: bfcf03d Author: Stephen Connolly <stephen.alan.conno...@gmail.com> Authored: Tue May 28 10:49:38 2013 +0100 Committer: Stephen Connolly <stephen.alan.conno...@gmail.com> Committed: Tue May 28 10:49:38 2013 +0100 ---------------------------------------------------------------------- maven-core/pom.xml | 82 +++++++++++++++++++++++----------------------- 1 files changed, 41 insertions(+), 41 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/maven/blob/85eed72e/maven-core/pom.xml ---------------------------------------------------------------------- diff --git a/maven-core/pom.xml b/maven-core/pom.xml index 847e5e1..e9507ac 100644 --- a/maven-core/pom.xml +++ b/maven-core/pom.xml @@ -109,6 +109,47 @@ <filtering>true</filtering> </resource> </resources> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.rat</groupId> + <artifactId>apache-rat-plugin</artifactId> + <configuration> + <excludes combine.children="append"> + <exclude>lifecycle-executor.txt</exclude> + <exclude>plugin-manager.txt</exclude> + <exclude>project-builder.txt</exclude> + <exclude>src/site/resources/**</exclude> + </excludes> + </configuration> + </plugin> + <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> + <plugin> + <groupId>org.eclipse.m2e</groupId> + <artifactId>lifecycle-mapping</artifactId> + <version>1.0.0</version> + <configuration> + <lifecycleMappingMetadata> + <pluginExecutions> + <pluginExecution> + <pluginExecutionFilter> + <groupId>org.codehaus.mojo</groupId> + <artifactId>buildnumber-maven-plugin</artifactId> + <versionRange>[1.2,)</versionRange> + <goals> + <goal>create-timestamp</goal> + </goals> + </pluginExecutionFilter> + <action> + <ignore /> + </action> + </pluginExecution> + </pluginExecutions> + </lifecycleMappingMetadata> + </configuration> + </plugin> + </plugins> + </pluginManagement> <plugins> <plugin> <groupId>org.codehaus.plexus</groupId> @@ -152,46 +193,5 @@ </executions> </plugin> </plugins> - <pluginManagement> - <plugins> - <plugin> - <groupId>org.apache.rat</groupId> - <artifactId>apache-rat-plugin</artifactId> - <configuration> - <excludes combine.children="append"> - <exclude>lifecycle-executor.txt</exclude> - <exclude>plugin-manager.txt</exclude> - <exclude>project-builder.txt</exclude> - <exclude>src/site/resources/**</exclude> - </excludes> - </configuration> - </plugin> - <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> - <plugin> - <groupId>org.eclipse.m2e</groupId> - <artifactId>lifecycle-mapping</artifactId> - <version>1.0.0</version> - <configuration> - <lifecycleMappingMetadata> - <pluginExecutions> - <pluginExecution> - <pluginExecutionFilter> - <groupId>org.codehaus.mojo</groupId> - <artifactId>buildnumber-maven-plugin</artifactId> - <versionRange>[1.2,)</versionRange> - <goals> - <goal>create-timestamp</goal> - </goals> - </pluginExecutionFilter> - <action> - <ignore /> - </action> - </pluginExecution> - </pluginExecutions> - </lifecycleMappingMetadata> - </configuration> - </plugin> - </plugins> - </pluginManagement> </build> </project>