You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by vs...@apache.org on 2008/02/28 14:17:01 UTC

svn commit: r631957 - in /maven/plugin-tools/trunk: ./ maven-plugin-plugin/ maven-plugin-testing-harness/ maven-plugin-tools-ant/ maven-plugin-tools-api/ maven-plugin-tools-beanshell/ maven-plugin-tools-java/ maven-plugin-tools-model/

Author: vsiveton
Date: Thu Feb 28 05:16:59 2008
New Revision: 631957

URL: http://svn.apache.org/viewvc?rev=631957&view=rev
Log:
o fixed r589478 like discussed in [1]
o back to version 2.2-SNAPSHOT for maven-plugin-tools-* and parent
o back to version 1.2-SNAPSHOT for maven-plugin-testing-harness
o back to groupId org.apache.maven.shared for maven-plugin-testing-harness
o specify version as property in parent

[1] http://www.nabble.com/-Discuss--Review-plugin-tools-groupId-and-version-td15601645s177.html

Modified:
    maven/plugin-tools/trunk/maven-plugin-plugin/pom.xml
    maven/plugin-tools/trunk/maven-plugin-testing-harness/pom.xml
    maven/plugin-tools/trunk/maven-plugin-tools-ant/pom.xml
    maven/plugin-tools/trunk/maven-plugin-tools-api/pom.xml
    maven/plugin-tools/trunk/maven-plugin-tools-beanshell/pom.xml
    maven/plugin-tools/trunk/maven-plugin-tools-java/pom.xml
    maven/plugin-tools/trunk/maven-plugin-tools-model/pom.xml
    maven/plugin-tools/trunk/pom.xml

Modified: maven/plugin-tools/trunk/maven-plugin-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugin-tools/trunk/maven-plugin-plugin/pom.xml?rev=631957&r1=631956&r2=631957&view=diff
==============================================================================
--- maven/plugin-tools/trunk/maven-plugin-plugin/pom.xml (original)
+++ maven/plugin-tools/trunk/maven-plugin-plugin/pom.xml Thu Feb 28 05:16:59 2008
@@ -148,22 +148,22 @@
       <dependency>
         <groupId>org.apache.maven</groupId>
         <artifactId>maven-plugin-tools-api</artifactId>
-        <version>${project.version}</version>
+        <version>${pluginToolsVersion}</version>
       </dependency>
       <dependency>
         <groupId>org.apache.maven</groupId>
         <artifactId>maven-plugin-tools-model</artifactId>
-        <version>${project.version}</version>
+        <version>${pluginToolsVersion}</version>
       </dependency>
       <dependency>
         <groupId>org.apache.maven</groupId>
         <artifactId>maven-plugin-tools-java</artifactId>
-        <version>${project.version}</version>
+        <version>${pluginToolsVersion}</version>
       </dependency>
       <dependency>
         <groupId>org.apache.maven</groupId>
         <artifactId>maven-plugin-tools-beanshell</artifactId>
-        <version>${project.version}</version>
+        <version>${pluginToolsVersion}</version>
       </dependency>
       <dependency>
         <groupId>org.apache.maven</groupId>
@@ -227,13 +227,13 @@
           <model>src/main/mdo/pluginRequirements.mdo</model>
         </configuration>
       </plugin>
-
     </plugins>
   </build>
 
   <properties>
     <doxiaVersion>1.0-alpha-10</doxiaVersion>
     <doxia-sitetoolsVersion>1.0-alpha-10</doxia-sitetoolsVersion>
+    <pluginToolsVersion>2.2-SNAPSHOT</pluginToolsVersion>
   </properties>
 
   <distributionManagement>

Modified: maven/plugin-tools/trunk/maven-plugin-testing-harness/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugin-tools/trunk/maven-plugin-testing-harness/pom.xml?rev=631957&r1=631956&r2=631957&view=diff
==============================================================================
--- maven/plugin-tools/trunk/maven-plugin-testing-harness/pom.xml (original)
+++ maven/plugin-tools/trunk/maven-plugin-testing-harness/pom.xml Thu Feb 28 05:16:59 2008
@@ -23,10 +23,12 @@
   <parent>
     <groupId>org.apache.maven</groupId>
     <artifactId>maven-plugin-tools</artifactId>
-    <version>2.4-SNAPSHOT</version>
+    <version>2.2-SNAPSHOT</version>
   </parent>
 
+  <groupId>org.apache.maven.shared</groupId>
   <artifactId>maven-plugin-testing-harness</artifactId>
+  <version>1.2-SNAPSHOT</version>
   <name>Maven Plugin Testing Mechanism</name>
   <description>The Maven Plugin Testing Harness provides mechanisms to manage tests on Mojo.</description>
 

Modified: maven/plugin-tools/trunk/maven-plugin-tools-ant/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugin-tools/trunk/maven-plugin-tools-ant/pom.xml?rev=631957&r1=631956&r2=631957&view=diff
==============================================================================
--- maven/plugin-tools/trunk/maven-plugin-tools-ant/pom.xml (original)
+++ maven/plugin-tools/trunk/maven-plugin-tools-ant/pom.xml Thu Feb 28 05:16:59 2008
@@ -23,9 +23,9 @@
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
-    <artifactId>maven-plugin-tools</artifactId>
     <groupId>org.apache.maven</groupId>
-    <version>2.4-SNAPSHOT</version>
+    <artifactId>maven-plugin-tools</artifactId>
+    <version>2.2-SNAPSHOT</version>
   </parent>
 
   <artifactId>maven-plugin-tools-ant</artifactId>
@@ -33,6 +33,7 @@
   <description>Descriptor extractor for plugins written in Ant.</description>
 
   <dependencies>
+    <!-- maven -->
     <dependency>
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-plugin-tools-api</artifactId>
@@ -45,6 +46,8 @@
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-plugin-tools-model</artifactId>
     </dependency>
+
+    <!-- plexus -->
     <dependency>
       <groupId>org.codehaus.plexus</groupId>
       <artifactId>plexus-utils</artifactId>

Modified: maven/plugin-tools/trunk/maven-plugin-tools-api/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugin-tools/trunk/maven-plugin-tools-api/pom.xml?rev=631957&r1=631956&r2=631957&view=diff
==============================================================================
--- maven/plugin-tools/trunk/maven-plugin-tools-api/pom.xml (original)
+++ maven/plugin-tools/trunk/maven-plugin-tools-api/pom.xml Thu Feb 28 05:16:59 2008
@@ -23,9 +23,9 @@
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
-    <artifactId>maven-plugin-tools</artifactId>
     <groupId>org.apache.maven</groupId>
-    <version>2.4-SNAPSHOT</version>
+    <artifactId>maven-plugin-tools</artifactId>
+    <version>2.2-SNAPSHOT</version>
   </parent>
 
   <artifactId>maven-plugin-tools-api</artifactId>
@@ -33,6 +33,7 @@
   <description>The Maven Plugin Tools API provides an API to extract information from and generate documentation for Maven 2 Plugins.</description>
 
   <dependencies>
+    <!-- maven -->
     <dependency>
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-project</artifactId>
@@ -47,10 +48,14 @@
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-plugin-descriptor</artifactId>
     </dependency>
+
+    <!-- plexus -->
     <dependency>
       <groupId>org.codehaus.plexus</groupId>
       <artifactId>plexus-utils</artifactId>
     </dependency>
+
+    <!-- misc -->
     <dependency>
       <groupId>jtidy</groupId>
       <artifactId>jtidy</artifactId>

Modified: maven/plugin-tools/trunk/maven-plugin-tools-beanshell/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugin-tools/trunk/maven-plugin-tools-beanshell/pom.xml?rev=631957&r1=631956&r2=631957&view=diff
==============================================================================
--- maven/plugin-tools/trunk/maven-plugin-tools-beanshell/pom.xml (original)
+++ maven/plugin-tools/trunk/maven-plugin-tools-beanshell/pom.xml Thu Feb 28 05:16:59 2008
@@ -23,9 +23,9 @@
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
-    <artifactId>maven-plugin-tools</artifactId>
     <groupId>org.apache.maven</groupId>
-    <version>2.4-SNAPSHOT</version>
+    <artifactId>maven-plugin-tools</artifactId>
+    <version>2.2-SNAPSHOT</version>
   </parent>
 
   <artifactId>maven-plugin-tools-beanshell</artifactId>
@@ -33,6 +33,7 @@
   <description>Descriptor extractor for plugins written in Beanshell.</description>
 
   <dependencies>
+    <!-- maven -->
     <dependency>
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-plugin-tools-api</artifactId>
@@ -41,6 +42,8 @@
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-plugin-descriptor</artifactId>
     </dependency>
+
+    <!-- misc -->
     <dependency>
       <groupId>bsh</groupId>
       <artifactId>bsh</artifactId>

Modified: maven/plugin-tools/trunk/maven-plugin-tools-java/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugin-tools/trunk/maven-plugin-tools-java/pom.xml?rev=631957&r1=631956&r2=631957&view=diff
==============================================================================
--- maven/plugin-tools/trunk/maven-plugin-tools-java/pom.xml (original)
+++ maven/plugin-tools/trunk/maven-plugin-tools-java/pom.xml Thu Feb 28 05:16:59 2008
@@ -23,9 +23,9 @@
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
-    <artifactId>maven-plugin-tools</artifactId>
     <groupId>org.apache.maven</groupId>
-    <version>2.4-SNAPSHOT</version>
+    <artifactId>maven-plugin-tools</artifactId>
+    <version>2.2-SNAPSHOT</version>
   </parent>
 
   <artifactId>maven-plugin-tools-java</artifactId>
@@ -33,6 +33,7 @@
   <description>Descriptor extractor for plugins written in Java.</description>
 
   <dependencies>
+    <!-- maven -->
     <dependency>
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-plugin-tools-api</artifactId>
@@ -41,6 +42,8 @@
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-plugin-descriptor</artifactId>
     </dependency>
+
+    <!-- misc -->
     <dependency>
       <groupId>qdox</groupId>
       <artifactId>qdox</artifactId>

Modified: maven/plugin-tools/trunk/maven-plugin-tools-model/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugin-tools/trunk/maven-plugin-tools-model/pom.xml?rev=631957&r1=631956&r2=631957&view=diff
==============================================================================
--- maven/plugin-tools/trunk/maven-plugin-tools-model/pom.xml (original)
+++ maven/plugin-tools/trunk/maven-plugin-tools-model/pom.xml Thu Feb 28 05:16:59 2008
@@ -23,13 +23,14 @@
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
-    <artifactId>maven-plugin-tools</artifactId>
     <groupId>org.apache.maven</groupId>
-    <version>2.4-SNAPSHOT</version>
+    <artifactId>maven-plugin-tools</artifactId>
+    <version>2.2-SNAPSHOT</version>
   </parent>
 
   <artifactId>maven-plugin-tools-model</artifactId>
   <name>Maven Plugin Metadata Model</name>
+  <description>The Maven Plugin Metadata Model provides an API to play with the Metadat model.</description>
 
   <build>
     <plugins>
@@ -55,10 +56,13 @@
   </build>
 
   <dependencies>
+    <!-- maven -->
     <dependency>
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-plugin-descriptor</artifactId>
     </dependency>
+
+    <!-- plexus -->
     <dependency>
       <groupId>org.codehaus.plexus</groupId>
       <artifactId>plexus-utils</artifactId>

Modified: maven/plugin-tools/trunk/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugin-tools/trunk/pom.xml?rev=631957&r1=631956&r2=631957&view=diff
==============================================================================
--- maven/plugin-tools/trunk/pom.xml (original)
+++ maven/plugin-tools/trunk/pom.xml Thu Feb 28 05:16:59 2008
@@ -31,7 +31,7 @@
 
   <groupId>org.apache.maven</groupId>
   <artifactId>maven-plugin-tools</artifactId>
-  <version>2.4-SNAPSHOT</version>
+  <version>2.2-SNAPSHOT</version>
   <packaging>pom</packaging>
 
   <name>Maven Plugin Tools</name>
@@ -176,22 +176,22 @@
       <dependency>
         <groupId>org.apache.maven</groupId>
         <artifactId>maven-plugin-tools-api</artifactId>
-        <version>${project.version}</version>
+        <version>${pluginToolsVersion}</version>
       </dependency>
       <dependency>
         <groupId>org.apache.maven</groupId>
         <artifactId>maven-plugin-tools-model</artifactId>
-        <version>${project.version}</version>
+        <version>${pluginToolsVersion}</version>
       </dependency>
       <dependency>
         <groupId>org.apache.maven</groupId>
         <artifactId>maven-plugin-tools-java</artifactId>
-        <version>${project.version}</version>
+        <version>${pluginToolsVersion}</version>
       </dependency>
       <dependency>
         <groupId>org.apache.maven</groupId>
         <artifactId>maven-plugin-tools-beanshell</artifactId>
-        <version>${project.version}</version>
+        <version>${pluginToolsVersion}</version>
       </dependency>
       <dependency>
         <groupId>org.apache.maven</groupId>
@@ -212,4 +212,8 @@
       </dependency>
     </dependencies>
   </dependencyManagement>
+
+  <properties>
+    <pluginToolsVersion>2.2-SNAPSHOT</pluginToolsVersion>
+  </properties>
 </project>