You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by be...@apache.org on 2008/04/01 22:37:26 UTC

svn commit: r643557 - in /maven/plugin-tools/trunk: maven-plugin-plugin/pom.xml maven-plugin-tools-model/pom.xml

Author: bentmann
Date: Tue Apr  1 13:37:22 2008
New Revision: 643557

URL: http://svn.apache.org/viewvc?rev=643557&view=rev
Log:
o Avoided usage of deprecated mojo parameter from modello-maven-plugin

Modified:
    maven/plugin-tools/trunk/maven-plugin-plugin/pom.xml
    maven/plugin-tools/trunk/maven-plugin-tools-model/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=643557&r1=643556&r2=643557&view=diff
==============================================================================
--- maven/plugin-tools/trunk/maven-plugin-plugin/pom.xml (original)
+++ maven/plugin-tools/trunk/maven-plugin-plugin/pom.xml Tue Apr  1 13:37:22 2008
@@ -225,7 +225,9 @@
         </executions>
         <configuration>
           <version>1.0.0</version>
-          <model>src/main/mdo/pluginRequirements.mdo</model>
+          <models>
+            <model>src/main/mdo/pluginRequirements.mdo</model>
+          </models>
         </configuration>
       </plugin>
     </plugins>

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=643557&r1=643556&r2=643557&view=diff
==============================================================================
--- maven/plugin-tools/trunk/maven-plugin-tools-model/pom.xml (original)
+++ maven/plugin-tools/trunk/maven-plugin-tools-model/pom.xml Tue Apr  1 13:37:22 2008
@@ -39,7 +39,9 @@
         <artifactId>modello-maven-plugin</artifactId>
         <version>1.0-alpha-18</version>
         <configuration>
-          <model>src/main/mdo/plugin-metadata.mdo</model>
+          <models>
+            <model>src/main/mdo/plugin-metadata.mdo</model>
+          </models>
           <version>1.0.0</version>
         </configuration>
         <executions>