Skip to content

Commit

Permalink
Fix Java 17+ builds
Browse files Browse the repository at this point in the history
  • Loading branch information
beikov committed Apr 11, 2024
1 parent 28d54f7 commit d3b08a2
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.idea/
*.iml
dependency-reduced-pom.xml
target/
18 changes: 18 additions & 0 deletions parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
<version.junit>4.12</version.junit>
<version.bnd>6.4.1</version.bnd>

<asmVersion>9.5</asmVersion>

<version.processor.plugin>3.3.2</version.processor.plugin>
<version.antrun.plugin>3.1.0</version.antrun.plugin>
</properties>
Expand Down Expand Up @@ -86,6 +88,22 @@
<artifactId>maven-antrun-plugin</artifactId>
<version>${version.antrun.plugin}</version>
</plugin>
<!-- This is necessary to allow building with Java 13 source -->
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<dependencies>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>${asmVersion}</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-commons</artifactId>
<version>${asmVersion}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</pluginManagement>
<plugins>
Expand Down

0 comments on commit d3b08a2

Please sign in to comment.