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 2010/05/17 20:38:11 UTC

svn commit: r945290 - /maven/plugins/trunk/maven-ear-plugin/pom.xml

Author: krosenvold
Date: Mon May 17 18:38:11 2010
New Revision: 945290

URL: http://svn.apache.org/viewvc?rev=945290&view=rev
Log:
o Upped archiver to 2.4.1, fixed dependency:analyze issues

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

Modified: maven/plugins/trunk/maven-ear-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-ear-plugin/pom.xml?rev=945290&r1=945289&r2=945290&view=diff
==============================================================================
--- maven/plugins/trunk/maven-ear-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-ear-plugin/pom.xml Mon May 17 18:38:11 2010
@@ -69,21 +69,24 @@ under the License.
     </dependency>
     <dependency>
       <groupId>org.apache.maven</groupId>
+      <artifactId>maven-core</artifactId>
+      <version>2.0.6</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven</groupId>
       <artifactId>maven-archiver</artifactId>
-      <version>2.2</version>
-      <exclusions>
-        <exclusion> <!-- Just a small workaround until archiver can be released without dangerous plexus-io version -->
-          <groupId>org.codehaus.plexus</groupId>
-          <artifactId>plexus-archiver</artifactId>
-        </exclusion>
-      </exclusions>
+      <version>2.4.1</version>
     </dependency>
-    <dependency> <!-- part of the same workaround. Remove this dep when uprading maven-archiver -->
+    <dependency>
       <groupId>org.codehaus.plexus</groupId>
       <artifactId>plexus-archiver</artifactId>
       <version>1.0</version>
     </dependency>
-
+   <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>
@@ -106,6 +109,12 @@ under the License.
       <version>1.2</version>
       <scope>test</scope>
     </dependency>
+   <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+   </dependency>
   </dependencies>
 
   <build>