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/05 21:44:39 UTC

svn commit: r645166 - /maven/plugins/trunk/maven-verifier-plugin/pom.xml

Author: bentmann
Date: Sat Apr  5 12:44:37 2008
New Revision: 645166

URL: http://svn.apache.org/viewvc?rev=645166&view=rev
Log:
o Updated to modello-maven-plugin:1.0-alpha-18
  (primarily to workaround MNG-3284 and make IT job "Maven-Plugins" pass, see also https://ci.sonatype.org/job/Maven-Plugins/16/consoleText)
o Updated to plexus-utils:1.5.1 to satisfy dependency on ReaderFactory employed by Modello generated parsers
o Bumped prerequisite on Maven to 2.0.6 for dependency on plexus-utils
o Updated to latest released parent
o Updated to junit:3.8.2

Modified:
    maven/plugins/trunk/maven-verifier-plugin/pom.xml

Modified: maven/plugins/trunk/maven-verifier-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-verifier-plugin/pom.xml?rev=645166&r1=645165&r2=645166&view=diff
==============================================================================
--- maven/plugins/trunk/maven-verifier-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-verifier-plugin/pom.xml Sat Apr  5 12:44:37 2008
@@ -21,7 +21,7 @@
   <parent>
     <artifactId>maven-plugins</artifactId>
     <groupId>org.apache.maven.plugins</groupId>
-    <version>8</version>
+    <version>10</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <artifactId>maven-verifier-plugin</artifactId>
@@ -29,7 +29,7 @@
   <name>Maven Verifier Plugin</name>
   <version>1.0-beta-2-SNAPSHOT</version>
   <prerequisites>
-    <maven>2.0</maven>
+    <maven>2.0.6</maven>
   </prerequisites>
   <issueManagement>
     <system>JIRA</system>
@@ -90,7 +90,7 @@
       <plugin>
         <groupId>org.codehaus.modello</groupId>
         <artifactId>modello-maven-plugin</artifactId>
-        <version>1.0-alpha-15</version>
+        <version>1.0-alpha-18</version>
         <executions>
           <execution>
             <goals>
@@ -109,7 +109,9 @@
           </execution>
         </executions>
         <configuration>
-          <model>src/main/mdo/verifications.mdo</model>
+          <models>
+            <model>src/main/mdo/verifications.mdo</model>
+          </models>
           <version>1.0.0</version>
         </configuration>
       </plugin>
@@ -124,13 +126,13 @@
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
-      <version>3.8.1</version>
+      <version>3.8.2</version>
       <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.codehaus.plexus</groupId>
       <artifactId>plexus-utils</artifactId>
-      <version>1.0.4</version>
+      <version>1.5.1</version>
     </dependency>
   </dependencies>
 </project>