You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by br...@apache.org on 2007/08/10 03:18:27 UTC

svn commit: r564450 - /maven/plugins/trunk/maven-dependency-plugin/src/test/resources/its/resolve/pom.xml

Author: brianf
Date: Thu Aug  9 18:18:26 2007
New Revision: 564450

URL: http://svn.apache.org/viewvc?view=rev&rev=564450
Log:
fixed version and bound plugin to test

Modified:
    maven/plugins/trunk/maven-dependency-plugin/src/test/resources/its/resolve/pom.xml

Modified: maven/plugins/trunk/maven-dependency-plugin/src/test/resources/its/resolve/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-dependency-plugin/src/test/resources/its/resolve/pom.xml?view=diff&rev=564450&r1=564449&r2=564450
==============================================================================
--- maven/plugins/trunk/maven-dependency-plugin/src/test/resources/its/resolve/pom.xml (original)
+++ maven/plugins/trunk/maven-dependency-plugin/src/test/resources/its/resolve/pom.xml Thu Aug  9 18:18:26 2007
@@ -37,14 +37,20 @@
   </dependencies>
     <!--This must be set so the correct version is used for the IT test-->
 	<build>
-    <pluginManagement>
       <plugins>
-        <plugin>
-          <groupId>org.apache.maven.plugins</groupId>
-          <artifactId>maven-dependency-plugin</artifactId>
-          <version>test</version>
-        </plugin>
-      </plugins>
-    </pluginManagement>
+      <plugin>
+	    <groupId>org.apache.maven.plugins</groupId>
+		<artifactId>maven-dependency-plugin</artifactId>
+		<executions>
+		<execution>
+			  <id>resolve</id>
+			  <phase>generate-sources</phase>
+			  <goals>
+                <goal>resolve</goal>
+			  </goals>
+			</execution>
+		</executions>
+      </plugin>
+    </plugins>
 	</build>
 </project>