fix shade plugin with java 17 (#9)

This commit is contained in:
vitaxa 2022-03-18 16:14:28 +03:00 committed by GitHub
parent 053fd96255
commit 4a9027002f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

12
pom.xml
View File

@ -96,6 +96,18 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<dependencies>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>9.2</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-commons</artifactId>
<version>9.2</version>
</dependency>
</dependencies>
<executions>
<execution>
<phase>package</phase>