XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Done
    • 3.1.0
    • None
    • maven-archiver
    • None

    Description

      There is a problem in org.apache.commons / commons-compress used by the plugin (Dependency from org.codehaus.plexus / plexus-archiver / 3.5). This problem has been fixed in a more recent version.

      I made a test on my own, just excluding it from plexus dependency and adding it back in version 1.16.1 and it has fixed my problem.

      More details can be find here : https://github.com/KSP-CKAN/CKAN/issues/2285

      Here is the modification I made :

       

      rleroy$ svn diff pom.xml
      Index: pom.xml
      ===================================================================
      --- pom.xml    (revision 1825327)
      +++ pom.xml    (working copy)
      @@ -133,8 +133,19 @@
             <groupId>org.codehaus.plexus</groupId>
             <artifactId>plexus-archiver</artifactId>
             <version>3.5</version>
      +      <exclusions>
      +        <exclusion>
      +          <groupId>org.apache.commons</groupId>
      +          <artifactId>commons-compress</artifactId>
      +        </exclusion>
      +      </exclusions>
           </dependency>
           <dependency>
      +      <groupId>org.apache.commons</groupId>
      +      <artifactId>commons-compress</artifactId>
      +      <version>1.16.1</version>
      +    </dependency>
      +    <dependency>
             <groupId>org.apache.maven.shared</groupId>
             <artifactId>file-management</artifactId>
             <version>3.0.0</version>
      
      

      By the way it would be cleaner to use a new version of plexus-archiver to fix the dependency.

       

      Attachments

        Activity

          People

            Unassigned Unassigned
            rleroy Ronan Le Roy
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: