You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kr...@apache.org on 2011/06/17 13:37:22 UTC

svn commit: r1136849 - /maven/surefire/trunk/surefire-shadefire/pom.xml

Author: krosenvold
Date: Fri Jun 17 11:37:22 2011
New Revision: 1136849

URL: http://svn.apache.org/viewvc?rev=1136849&view=rev
Log:
o Made shade properly use the old version of surefire.

Removed all inheritance to the parent poms because it was making it
a pain to control the version of surefire.

Modified:
    maven/surefire/trunk/surefire-shadefire/pom.xml

Modified: maven/surefire/trunk/surefire-shadefire/pom.xml
URL: http://svn.apache.org/viewvc/maven/surefire/trunk/surefire-shadefire/pom.xml?rev=1136849&r1=1136848&r2=1136849&view=diff
==============================================================================
--- maven/surefire/trunk/surefire-shadefire/pom.xml (original)
+++ maven/surefire/trunk/surefire-shadefire/pom.xml Fri Jun 17 11:37:22 2011
@@ -20,13 +20,9 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
 
-  <parent>
-    <groupId>org.apache.maven.surefire</groupId>
-    <artifactId>surefire</artifactId>
-    <version>3.0-SNAPSHOT</version>
-    <relativePath>../pom.xml</relativePath>
-  </parent>
 
+  <groupId>org.apache.maven.surefire</groupId>
+  <version>3.0-SNAPSHOT</version>
   <artifactId>surefire-shadefire</artifactId>
   <description>A super-shaded junit3 provider that is used by surefire to build itself,
     that basically has ALL classes relocated to facilitate no API-conflict whatsover with ourself.
@@ -34,10 +30,15 @@
   </description>
   <name>surefire-shadefire</name>
 
+  <properties>
+    <shadedVersion>2.8</shadedVersion>
+  </properties>
+
   <dependencies>
     <dependency>
       <groupId>org.codehaus.plexus</groupId>
       <artifactId>plexus-utils</artifactId>
+      <version>2.1</version>
     </dependency>
     <dependency>
       <groupId>org.apache.maven.surefire</groupId>
@@ -93,6 +94,7 @@
       </plugin>
       <plugin>
         <artifactId>maven-surefire-plugin</artifactId>
+        <version>${shadedVersion}</version>
         <configuration>
           <skip>true</skip>
         </configuration>