Skip to content

Commit

Permalink
Use newer Proguard that can handle JDK14.
Browse files Browse the repository at this point in the history
Unfortunately due to a bug in proguard-maven-plugin I can't currently use a
version of Proguard that supports JDK15.
  • Loading branch information
samskivert committed Apr 5, 2021
1 parent cedf568 commit 4927900
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions launcher/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
<plugin>
<groupId>com.github.wvengen</groupId>
<artifactId>proguard-maven-plugin</artifactId>
<version>2.0.14</version>
<version>2.3.1</version>
<executions>
<execution>
<phase>package</phase>
Expand All @@ -94,14 +94,14 @@
</executions>
<dependencies>
<dependency>
<groupId>net.sf.proguard</groupId>
<groupId>com.guardsquare</groupId>
<artifactId>proguard-base</artifactId>
<version>6.1.0</version>
<version>7.0.0</version>
<scope>runtime</scope>
</dependency>
</dependencies>
<configuration>
<proguardVersion>6.1.0</proguardVersion>
<proguardVersion>7.0.0</proguardVersion>
<outputDirectory>${project.build.directory}</outputDirectory>
<outjar>${project.build.finalName}.jar</outjar>
<injar>${project.build.finalName}.jar</injar>
Expand Down

0 comments on commit 4927900

Please sign in to comment.