Skip to content

Commit

Permalink
fixed ASM issue at gwtproject/gwt#9693
Browse files Browse the repository at this point in the history
  • Loading branch information
bail8001 committed Apr 18, 2021
1 parent 0dd5c66 commit 84030d8
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
20 changes: 19 additions & 1 deletion modules/gwt-web-eclipse/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,24 @@
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-annotations</artifactId>
<!--
CLASS-PATH FIX
eliminate runtime conflicts originating from GWT's classpath misalignment with Jetty dependencies baseline
which started at GWT 2.9.0
Enable the exclusions to fix https://github.com/gwtproject/gwt/issues/9693
-->
<!--
<exclusions>
<exclusion>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-commons</artifactId>
</exclusion>
<exclusion>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
</exclusion>
</exclusions>
-->
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
Expand Down Expand Up @@ -207,7 +225,7 @@
</dependency>
<!--
CLASS-PATH FIX
This is required by Super DevMode and "Google Plugin for Eclipse"
This is required by Super DevMode and "GWT Eclipse Plugin"
-->
<dependency>
<groupId>org.aspectj</groupId>
Expand Down
2 changes: 1 addition & 1 deletion modules/gwt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<!--
The GWT version for all applications of this solution
-->
<version.gwt>2.8.2</version.gwt>
<version.gwt>2.9.0</version.gwt>
<version.gwt-maven-plugin>${version.gwt}</version.gwt-maven-plugin>
</properties>

Expand Down

0 comments on commit 84030d8

Please sign in to comment.