You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by sc...@apache.org on 2016/05/06 19:31:39 UTC

svn commit: r1742596 - /maven/shared/trunk/maven-archiver/pom.xml

Author: schulte
Date: Fri May  6 19:31:38 2016
New Revision: 1742596

URL: http://svn.apache.org/viewvc?rev=1742596&view=rev
Log:
[MSHARED-515] Addition of xz compression support.

o Updated to recent 'plexus-archiver' and 'plexus-utils' versions
  to add xz compression support.


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

Modified: maven/shared/trunk/maven-archiver/pom.xml
URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-archiver/pom.xml?rev=1742596&r1=1742595&r2=1742596&view=diff
==============================================================================
--- maven/shared/trunk/maven-archiver/pom.xml (original)
+++ maven/shared/trunk/maven-archiver/pom.xml Fri May  6 19:31:38 2016
@@ -28,7 +28,7 @@
 
   <groupId>org.apache.maven</groupId>
   <artifactId>maven-archiver</artifactId>
-  <version>3.0.3-SNAPSHOT</version>
+  <version>3.1-SNAPSHOT</version>
 
   <name>Apache Maven Archiver</name>
   <description>Provides utility methods for creating JARs and other archive files from a Maven project.</description>
@@ -80,17 +80,26 @@
       <artifactId>maven-shared-utils</artifactId>
       <version>3.0.0</version>
     </dependency>
+    <!--
+    Pulled in as a direct dependency to resolve conflicts.
+    We want the most recent commons-io compatible to the target JDK.
+    -->
+    <dependency>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</artifactId>
+      <version>2.5</version>
+    </dependency>
 
     <dependency>
       <groupId>org.codehaus.plexus</groupId>
       <artifactId>plexus-archiver</artifactId>
-      <version>3.1.1</version>
+      <version>3.2</version>
     </dependency>
     <!-- plexus-archiver needs this, or else maven-artifact will pull in a version from the pliocene era -->
     <dependency>
       <groupId>org.codehaus.plexus</groupId>
       <artifactId>plexus-utils</artifactId>
-      <version>3.0.22</version>
+      <version>3.0.23</version>
     </dependency>
     <dependency>
       <groupId>org.codehaus.plexus</groupId>