Skip to content

Commit

Permalink
Added GWT 2.10 replacements (#264)
Browse files Browse the repository at this point in the history
  • Loading branch information
salmonb authored Jun 5, 2024
1 parent 1108fc9 commit e30c423
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,11 @@ public abstract class AbstractBuildMojo extends AbstractCacheMojo {
private List<DependencyReplacement> defaultDependencyReplacements = Arrays.asList(
new DependencyReplacement("com.google.jsinterop:base", "com.vertispan.jsinterop:base:" + Versions.VERTISPAN_JSINTEROP_BASE_VERSION),
new DependencyReplacement("org.realityforge.com.google.jsinterop:base", "com.vertispan.jsinterop:base:" + Versions.VERTISPAN_JSINTEROP_BASE_VERSION),
// New GWT groupId since GWT 2.10
new DependencyReplacement("org.gwtproject:gwt-user", null),
new DependencyReplacement("org.gwtproject:gwt-dev", null),
new DependencyReplacement("org.gwtproject:gwt-servlet", null),
// Old GWT groupId before GWT 2.10
new DependencyReplacement("com.google.gwt:gwt-user", null),
new DependencyReplacement("com.google.gwt:gwt-dev", null),
new DependencyReplacement("com.google.gwt:gwt-servlet", null)
Expand Down

0 comments on commit e30c423

Please sign in to comment.