Updated external library versions to support gradle 8 (#1040)

This commit is contained in:
Izumi Kawashima 2023-05-09 00:16:23 +09:00 committed by GitHub
parent 72a93a0cc0
commit 1ee201a41f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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'
} }
} }