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 2010/05/31 11:48:17 UTC

svn commit: r949698 [5/5] - in /maven/maven-3/branches/MNG-1803: ./ apache-maven/ maven-artifact/ maven-artifact/src/main/java/org/apache/maven/artifact/repository/ maven-artifact/src/main/java/org/apache/maven/repository/ maven-compat/ maven-compat/sr...

Modified: maven/maven-3/branches/MNG-1803/maven-repository/pom.xml
URL: http://svn.apache.org/viewvc/maven/maven-3/branches/MNG-1803/maven-repository/pom.xml?rev=949698&r1=949697&r2=949698&view=diff
==============================================================================
--- maven/maven-3/branches/MNG-1803/maven-repository/pom.xml (original)
+++ maven/maven-3/branches/MNG-1803/maven-repository/pom.xml Mon May 31 09:48:12 2010
@@ -19,9 +19,12 @@
     <artifactId>maven</artifactId>
     <version>3.0-SNAPSHOT</version>
   </parent>
+
   <artifactId>maven-repository</artifactId>
+
   <name>Maven Repository</name>
   <description>Repository System interface for Maven.</description>
+
   <dependencies>
     <dependency>
       <groupId>org.apache.maven</groupId>
@@ -53,6 +56,7 @@
       <scope>test</scope>
     </dependency>
   </dependencies>
+
   <build>
     <plugins>
       <plugin>

Modified: maven/maven-3/branches/MNG-1803/pom.xml
URL: http://svn.apache.org/viewvc/maven/maven-3/branches/MNG-1803/pom.xml?rev=949698&r1=949697&r2=949698&view=diff
==============================================================================
--- maven/maven-3/branches/MNG-1803/pom.xml (original)
+++ maven/maven-3/branches/MNG-1803/pom.xml Mon May 31 09:48:12 2010
@@ -44,14 +44,15 @@
     <plexusVersion>1.5.4</plexusVersion>
     <plexusInterpolationVersion>1.11</plexusInterpolationVersion>
     <plexusPluginManagerVersion>1.0-alpha-1</plexusPluginManagerVersion>
-    <plexusUtilsVersion>2.0.3</plexusUtilsVersion>
+    <plexusUtilsVersion>2.0.4</plexusUtilsVersion>
     <wagonVersion>1.0-beta-6</wagonVersion>
     <securityDispatcherVersion>1.3</securityDispatcherVersion>
     <cipherVersion>1.4</cipherVersion>
-    <modelloVersion>1.3</modelloVersion>
+    <modelloVersion>1.4</modelloVersion>
     <jxpathVersion>1.3</jxpathVersion>
     <maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
   </properties>
+
   <mailingLists>
     <mailingList>
       <name>Maven Developer List</name>
@@ -424,6 +425,11 @@
           <artifactId>maven-remote-resources-plugin</artifactId>
           <version>1.1</version>
         </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-site-plugin</artifactId>
+          <version>2.1</version>
+        </plugin>
       </plugins>
     </pluginManagement>
   </build>
@@ -462,6 +468,17 @@
               <targetJdk>1.5</targetJdk>
             </configuration>
           </plugin>
+          <plugin>
+            <groupId>org.codehaus.mojo</groupId>
+            <artifactId>cobertura-maven-plugin</artifactId>
+            <version>2.2</version>
+            <reportSets>
+              <reportSet>
+                <!-- Disabled at it kills the site generation via a NoClassDefFoundError -->
+                <reports></reports>
+              </reportSet>
+            </reportSets>
+          </plugin>
         </plugins>
       </reporting>
     </profile>