Skip to content

Commit

Permalink
progard-core:9.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
onacit committed Nov 16, 2023
1 parent b75f69d commit 25c87ef
Showing 1 changed file with 17 additions and 5 deletions.
22 changes: 17 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,21 @@
<maven.compiler.target>${maven.compiler.source}</maven.compiler.target>
<maven.compiler.testSource>${maven.compiler.source}</maven.compiler.testSource>
<maven.compiler.testTarget>${maven.compiler.testSource}</maven.compiler.testTarget>
<version.proguard-base>7.4.0</version.proguard-base>
<!-- <version.proguard-base>7.4.0</version.proguard-base>-->
<version.proguard-core>9.1.0</version.proguard-core>
</properties>

<dependencyManagement>
<dependencies>
<!-- <dependency>-->
<!-- <groupId>com.guardsquare</groupId>-->
<!-- <artifactId>proguard-base</artifactId>-->
<!-- <version>${version.proguard-base}</version>-->
<!-- </dependency>-->
<dependency>
<groupId>com.guardsquare</groupId>
<artifactId>proguard-base</artifactId>
<version>${version.proguard-base}</version>
<artifactId>proguard-core</artifactId>
<version>${version.proguard-core}</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand All @@ -81,14 +87,20 @@
<option>-keepattributes InnerClasses,EnclosingMethod</option>
</options>
</configuration>
<!-- <dependencies>-->
<dependencies>
<!-- <dependency>-->
<!-- <groupId>com.guardsquare</groupId>-->
<!-- <artifactId>proguard-base</artifactId>-->
<!-- <version>${version.proguard-base}</version>-->
<!-- <scope>runtime</scope>-->
<!-- </dependency>-->
<!-- </dependencies>-->
<dependency>
<groupId>com.guardsquare</groupId>
<artifactId>proguard-core</artifactId>
<version>${version.proguard-core}</version>
<scope>runtime</scope>
</dependency>
</dependencies>
<executions>
<execution>
<id>proguard</id>
Expand Down

0 comments on commit 25c87ef

Please sign in to comment.