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/05/31 10:47:10 UTC

svn commit: r661976 - /maven/shared/trunk/maven-invoker/pom.xml

Author: bentmann
Date: Sat May 31 01:47:10 2008
New Revision: 661976

URL: http://svn.apache.org/viewvc?rev=661976&view=rev
Log:
o Removed unused dependency on maven-artifact
o Added description
o Enabled Surefire report
o Lock down versions for report plugins

Modified:
    maven/shared/trunk/maven-invoker/pom.xml

Modified: maven/shared/trunk/maven-invoker/pom.xml
URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-invoker/pom.xml?rev=661976&r1=661975&r2=661976&view=diff
==============================================================================
--- maven/shared/trunk/maven-invoker/pom.xml (original)
+++ maven/shared/trunk/maven-invoker/pom.xml Sat May 31 01:47:10 2008
@@ -27,6 +27,11 @@
   <artifactId>maven-invoker</artifactId>
   <version>2.0.9-SNAPSHOT</version>
   <name>Maven Process Invoker</name>
+  <description>A component to programmatically invoke Maven.</description>
+  <issueManagement>
+    <system>jira</system>
+    <url>http://jira.codehaus.org/browse/MSHARED</url>
+  </issueManagement>
   <dependencies>
     <dependency>
       <groupId>org.codehaus.plexus</groupId>
@@ -34,11 +39,6 @@
       <version>1.5.1</version>
     </dependency>
     <dependency>
-      <groupId>org.apache.maven</groupId>
-      <artifactId>maven-artifact</artifactId>
-      <version>2.0.5</version>
-    </dependency>
-    <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
       <version>3.8.2</version>
@@ -82,10 +82,29 @@
   <reporting>
     <plugins>
       <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+        <version>2.0.1</version>
+      </plugin>
+      <plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>cobertura-maven-plugin</artifactId>
+        <version>2.2</version>
       </plugin>
       <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-report-plugin</artifactId>
+        <version>2.4.3</version>
+        <reportSets>
+          <reportSet>
+            <reports>
+              <report>report-only</report>
+            </reports>
+          </reportSet>
+        </reportSets>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-changes-plugin</artifactId>
         <version>2.0</version>
         <configuration>
@@ -98,7 +117,7 @@
             </reports>
           </reportSet>
         </reportSets>
-      </plugin>      
+      </plugin>
     </plugins>
   </reporting>
   <scm>