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 2006/06/13 18:16:30 UTC

svn commit: r413930 - /maven/components/trunk/integration-tests/maven-core-it-plugin/pom.xml

Author: brett
Date: Tue Jun 13 09:16:30 2006
New Revision: 413930

URL: http://svn.apache.org/viewvc?rev=413930&view=rev
Log:
fix parent

Modified:
    maven/components/trunk/integration-tests/maven-core-it-plugin/pom.xml

Modified: maven/components/trunk/integration-tests/maven-core-it-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/components/trunk/integration-tests/maven-core-it-plugin/pom.xml?rev=413930&r1=413929&r2=413930&view=diff
==============================================================================
--- maven/components/trunk/integration-tests/maven-core-it-plugin/pom.xml (original)
+++ maven/components/trunk/integration-tests/maven-core-it-plugin/pom.xml Tue Jun 13 09:16:30 2006
@@ -1,8 +1,8 @@
 <model xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
   <parent>
-    <artifactId>maven-plugin-parent</artifactId>
+    <artifactId>maven-plugins</artifactId>
     <groupId>org.apache.maven.plugins</groupId>
-    <version>2.0.1</version>
+    <version>1</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <artifactId>maven-core-it-plugin</artifactId>
@@ -11,6 +11,11 @@
   <version>1.1-SNAPSHOT</version>
   <inceptionYear>2001</inceptionYear>
   <dependencies>
+    <dependency>
+      <groupId>org.apache.maven</groupId>
+      <artifactId>maven-plugin-api</artifactId>
+      <version>2.0</version>
+    </dependency>
     <dependency>
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-project</artifactId>