You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by si...@apache.org on 2009/01/26 21:23:15 UTC

svn commit: r737813 - in /maven/components/trunk/maven-project/src/test/resources-project-builder/plugin-order: ./ nexus-parent.xml pom.xml

Author: sisbell
Date: Mon Jan 26 20:23:15 2009
New Revision: 737813

URL: http://svn.apache.org/viewvc?rev=737813&view=rev
Log:
Plugin order unit test.

Added:
    maven/components/trunk/maven-project/src/test/resources-project-builder/plugin-order/
    maven/components/trunk/maven-project/src/test/resources-project-builder/plugin-order/nexus-parent.xml
    maven/components/trunk/maven-project/src/test/resources-project-builder/plugin-order/pom.xml

Added: maven/components/trunk/maven-project/src/test/resources-project-builder/plugin-order/nexus-parent.xml
URL: http://svn.apache.org/viewvc/maven/components/trunk/maven-project/src/test/resources-project-builder/plugin-order/nexus-parent.xml?rev=737813&view=auto
==============================================================================
--- maven/components/trunk/maven-project/src/test/resources-project-builder/plugin-order/nexus-parent.xml (added)
+++ maven/components/trunk/maven-project/src/test/resources-project-builder/plugin-order/nexus-parent.xml Mon Jan 26 20:23:15 2009
@@ -0,0 +1,18 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+
+  <groupId>org.sonatype.nexus</groupId>
+  <artifactId>nexus-parent</artifactId>
+  <version>8-SNAPSHOT</version>
+  <build>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.codehaus.plexus</groupId>
+          <artifactId>plexus-component-metadata</artifactId>
+          <version>${plexus.version}</version>
+        </plugin>
+        </plugins>
+    </pluginManagement>
+  </build>
+</project>
\ No newline at end of file

Added: maven/components/trunk/maven-project/src/test/resources-project-builder/plugin-order/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/trunk/maven-project/src/test/resources-project-builder/plugin-order/pom.xml?rev=737813&view=auto
==============================================================================
--- maven/components/trunk/maven-project/src/test/resources-project-builder/plugin-order/pom.xml (added)
+++ maven/components/trunk/maven-project/src/test/resources-project-builder/plugin-order/pom.xml Mon Jan 26 20:23:15 2009
@@ -0,0 +1,27 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.sonatype.nexus</groupId>
+    <artifactId>nexus-parent</artifactId>
+    <version>8-SNAPSHOT</version>
+    <relativePath>nexus-parent.xml</relativePath>
+  </parent>
+
+  <groupId>org.sonatype.nexus</groupId>
+  <artifactId>nexus-indexer</artifactId>
+  <version>1.1.3-SNAPSHOT</version>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.codehaus.plexus</groupId>
+        <artifactId>plexus-component-metadata</artifactId>
+      </plugin>
+
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+       </plugin>
+    </plugins>
+  </build>
+</project>
\ No newline at end of file