You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by jv...@apache.org on 2012/12/09 01:31:08 UTC

git commit: - make m2e happy on import

Updated Branches:
  refs/heads/master d6544c481 -> c8536bf89


- make m2e happy on import


Project: http://git-wip-us.apache.org/repos/asf/maven/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven/commit/c8536bf8
Tree: http://git-wip-us.apache.org/repos/asf/maven/tree/c8536bf8
Diff: http://git-wip-us.apache.org/repos/asf/maven/diff/c8536bf8

Branch: refs/heads/master
Commit: c8536bf89f30b68cc00e4c23c28f6a2370d8ec4c
Parents: d6544c4
Author: Jason van Zyl <jv...@apache.org>
Authored: Sat Dec 8 19:30:57 2012 -0500
Committer: Jason van Zyl <jv...@apache.org>
Committed: Sat Dec 8 19:30:57 2012 -0500

----------------------------------------------------------------------
 maven-core/pom.xml |   29 +++++++++++++++++++++++++++++
 1 files changed, 29 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven/blob/c8536bf8/maven-core/pom.xml
----------------------------------------------------------------------
diff --git a/maven-core/pom.xml b/maven-core/pom.xml
index 3e18639..dcc2699 100644
--- a/maven-core/pom.xml
+++ b/maven-core/pom.xml
@@ -152,5 +152,34 @@
         </executions>
       </plugin>
     </plugins>
+    <pluginManagement>
+      <plugins>
+        <!--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></ignore>
+                  </action>
+                </pluginExecution>
+              </pluginExecutions>
+            </lifecycleMappingMetadata>
+          </configuration>
+        </plugin>
+      </plugins>
+    </pluginManagement>
   </build>
 </project>