Skip to content
This repository has been archived by the owner on Mar 31, 2022. It is now read-only.

Commit

Permalink
update org.apache.maven:maven-archiver to resolve Java 11 issue
Browse files Browse the repository at this point in the history
see
#77 (comment)
- for some reason org.codehaus.plexus.archiver.zip.AbstractZipArchiver
(which comes from a transitive dependency of maven-archiver) is throwing
an exception on Java 11 when maven-archiver is at v3.0.0. Updated to
latest (3.2.0) to pull in newer transitive dependencies.

Also upgraded a bunch of other dependencies that caused
requireUpperBoundsDep problems once maven-archiver was at 3.2.0
  • Loading branch information
mattnworb committed Oct 8, 2018
1 parent ddc688d commit da448ef
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,16 @@
<artifactId>jsr305</artifactId>
<version>2.0.1</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.14</version>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-interpolation</artifactId>
<version>1.24</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand All @@ -43,7 +53,7 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>20.0</version>
<version>23.6.1-jre</version>
</dependency>
<dependency>
<groupId>com.spotify</groupId>
Expand All @@ -54,18 +64,18 @@
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>3.3.9</version>
<version>3.5.4</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>3.3.9</version>
<version>3.5.4</version>
</dependency>

<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-archiver</artifactId>
<version>3.0.0</version>
<version>3.2.0</version>
</dependency>

<dependency>
Expand All @@ -83,7 +93,7 @@
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.4</version>
<version>3.5.2</version>
<scope>provided</scope>
</dependency>

Expand Down Expand Up @@ -117,7 +127,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
<version>3.4</version>
<version>3.5.2</version>
<configuration>
<goalPrefix>dockerfile</goalPrefix>
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
Expand Down

0 comments on commit da448ef

Please sign in to comment.