Updated external library versions to support gradle 8

This commit is contained in:
Izumi Kawashima 2023-05-08 23:19:43 +09:00
parent eef8ee3934
commit 8e4deb0f4a
2 changed files with 4 additions and 4 deletions

View File

@ -4,8 +4,8 @@ buildscript {
maven { url "https://plugins.gradle.org/m2/" } maven { url "https://plugins.gradle.org/m2/" }
} }
dependencies { dependencies {
classpath 'org.wisepersist:gwt-gradle-plugin:1.1.15' classpath 'org.wisepersist:gwt-gradle-plugin:1.1.19'
classpath 'org.gretty:gretty:4.0.0' classpath 'org.gretty:gretty:4.0.3'
} }
} }
@ -59,7 +59,7 @@ gwt {
} }
farm { farm {
webapp draftWar.archivePath, contextPath: "/$name" webapp draftWar.getArchiveFile().get(), contextPath: "/$name"
} }
project.afterEvaluate { project.afterEvaluate {

View File

@ -3,7 +3,7 @@ buildscript {
mavenCentral() mavenCentral()
} }
dependencies { dependencies {
classpath 'org.wisepersist:gwt-gradle-plugin:1.1.15' classpath 'org.wisepersist:gwt-gradle-plugin:1.1.19'
} }
} }