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 2009/04/13 23:12:42 UTC

svn commit: r764607 - /maven/plugins/trunk/maven-shade-plugin/pom.xml

Author: bentmann
Date: Mon Apr 13 21:12:42 2009
New Revision: 764607

URL: http://svn.apache.org/viewvc?rev=764607&view=rev
Log:
o Tidied up dependencies

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

Modified: maven/plugins/trunk/maven-shade-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-shade-plugin/pom.xml?rev=764607&r1=764606&r2=764607&view=diff
==============================================================================
--- maven/plugins/trunk/maven-shade-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-shade-plugin/pom.xml Mon Apr 13 21:12:42 2009
@@ -36,7 +36,7 @@
   <description>Repackages the project classes together with their dependencies into a single uber-jar, optionally renaming classes.</description>
 
   <prerequisites>
-    <maven>2.0.6</maven>
+    <maven>${mavenVersion}</maven>
   </prerequisites>
 
   <scm>
@@ -50,6 +50,7 @@
   </issueManagement>
 
   <properties>
+    <mavenVersion>2.0.6</mavenVersion>
     <currentVersion>${project.version}</currentVersion>
   </properties>
 
@@ -58,22 +59,32 @@
     <dependency>
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-plugin-api</artifactId>
-      <version>2.0.6</version>
+      <version>${mavenVersion}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-model</artifactId>
-      <version>2.0.6</version>
+      <version>${mavenVersion}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-project</artifactId>
-      <version>2.0.6</version>
+      <version>${mavenVersion}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven</groupId>
+      <artifactId>maven-artifact</artifactId>
+      <version>${mavenVersion}</version>
     </dependency>
 
     <!-- Plexus -->
     <dependency>
       <groupId>org.codehaus.plexus</groupId>
+      <artifactId>plexus-container-default</artifactId>
+      <version>1.0-alpha-9-stable-1</version>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.plexus</groupId>
       <artifactId>plexus-utils</artifactId>
       <version>1.5.5</version>
     </dependency>
@@ -84,12 +95,7 @@
       <artifactId>asm</artifactId>
       <version>3.1</version>
     </dependency>
-     <dependency>
-      <groupId>asm</groupId>
-      <artifactId>asm-util</artifactId>
-      <version>3.1</version>
-    </dependency>
-     <dependency>
+    <dependency>
       <groupId>asm</groupId>
       <artifactId>asm-commons</artifactId>
       <version>3.1</version>