Skip to content

Commit

Permalink
Update dependencies for Java11 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Woods committed Dec 5, 2019
1 parent 330131c commit 3478030
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
25 changes: 25 additions & 0 deletions jetty-console-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,31 @@
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-annotations</artifactId>
<version>${jetty.version}</version>
<exclusions>
<exclusion>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
</exclusion>
<exclusion>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-commons</artifactId>
</exclusion>
<exclusion>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-tree</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>7.2</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-commons</artifactId>
<version>7.2</version>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@
</dependencies>

<properties>
<jetty.version>9.3.25.v20180904</jetty.version>
<jetty.version>9.4.24.v20191120</jetty.version>
<jexmec.version>2.0.0rc7</jexmec.version>
<slf4j.version>1.7.5</slf4j.version>
<release.plugin.version>2.5.2</release.plugin.version>
Expand Down

0 comments on commit 3478030

Please sign in to comment.