You are viewing a plain text version of this content. The canonical link for it is here.
Posted to surefire-commits@maven.apache.org by ma...@apache.org on 2007/12/08 18:27:07 UTC

svn commit: r602517 - in /maven/surefire/branches/surefire-2.3.x: pom.xml surefire-booter/pom.xml surefire-providers/pom.xml

Author: mauro
Date: Sat Dec  8 09:27:06 2007
New Revision: 602517

URL: http://svn.apache.org/viewvc?rev=602517&view=rev
Log:
Declared surefire-api dependency in top-level <dependencyManagement/> as workaround for MNG-2339, and for consistency with trunk.

Modified:
    maven/surefire/branches/surefire-2.3.x/pom.xml
    maven/surefire/branches/surefire-2.3.x/surefire-booter/pom.xml
    maven/surefire/branches/surefire-2.3.x/surefire-providers/pom.xml

Modified: maven/surefire/branches/surefire-2.3.x/pom.xml
URL: http://svn.apache.org/viewvc/maven/surefire/branches/surefire-2.3.x/pom.xml?rev=602517&r1=602516&r2=602517&view=diff
==============================================================================
--- maven/surefire/branches/surefire-2.3.x/pom.xml (original)
+++ maven/surefire/branches/surefire-2.3.x/pom.xml Sat Dec  8 09:27:06 2007
@@ -111,9 +111,14 @@
     <module>surefire-providers</module>
     <module>maven-surefire-plugin</module>
     <module>maven-surefire-report-plugin</module>
-  </modules>
+  </modules>  
   <dependencyManagement>
     <dependencies>
+      <dependency>
+        <groupId>org.apache.maven.surefire</groupId>
+        <artifactId>surefire-api</artifactId>
+        <version>2.3.1-SNAPSHOT</version>
+      </dependency>
       <dependency>
         <groupId>org.apache.maven.surefire</groupId>
         <artifactId>surefire-booter</artifactId>

Modified: maven/surefire/branches/surefire-2.3.x/surefire-booter/pom.xml
URL: http://svn.apache.org/viewvc/maven/surefire/branches/surefire-2.3.x/surefire-booter/pom.xml?rev=602517&r1=602516&r2=602517&view=diff
==============================================================================
--- maven/surefire/branches/surefire-2.3.x/surefire-booter/pom.xml (original)
+++ maven/surefire/branches/surefire-2.3.x/surefire-booter/pom.xml Sat Dec  8 09:27:06 2007
@@ -11,7 +11,6 @@
     <dependency>
       <groupId>org.apache.maven.surefire</groupId>
       <artifactId>surefire-api</artifactId>
-      <version>${project.version}</version>
     </dependency>
     <dependency>
       <groupId>org.codehaus.plexus</groupId>

Modified: maven/surefire/branches/surefire-2.3.x/surefire-providers/pom.xml
URL: http://svn.apache.org/viewvc/maven/surefire/branches/surefire-2.3.x/surefire-providers/pom.xml?rev=602517&r1=602516&r2=602517&view=diff
==============================================================================
--- maven/surefire/branches/surefire-2.3.x/surefire-providers/pom.xml (original)
+++ maven/surefire/branches/surefire-2.3.x/surefire-providers/pom.xml Sat Dec  8 09:27:06 2007
@@ -35,13 +35,8 @@
   </modules>
   <dependencies>
     <dependency>
-      <groupId>${project.groupId}</groupId>
+      <groupId>org.apache.maven.surefire</groupId>
       <artifactId>surefire-api</artifactId>
-      <version>2.3.1-SNAPSHOT</version>
-            <!-- commenting this due to MNG-2339
-            <version>${project.version}</version>
-      
-      -->
     </dependency>
   </dependencies>
 </project>