From 8e4deb0f4a34b4ee43b7a525c5fa4c650f605e0b Mon Sep 17 00:00:00 2001 From: Izumi Kawashima Date: Mon, 8 May 2023 23:19:43 +0900 Subject: [PATCH] Updated external library versions to support gradle 8 --- vtm-web-app/build.gradle | 6 +++--- vtm-web/build.gradle | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/vtm-web-app/build.gradle b/vtm-web-app/build.gradle index f7fbdbfb..2b09e142 100644 --- a/vtm-web-app/build.gradle +++ b/vtm-web-app/build.gradle @@ -4,8 +4,8 @@ buildscript { maven { url "https://plugins.gradle.org/m2/" } } dependencies { - classpath 'org.wisepersist:gwt-gradle-plugin:1.1.15' - classpath 'org.gretty:gretty:4.0.0' + classpath 'org.wisepersist:gwt-gradle-plugin:1.1.19' + classpath 'org.gretty:gretty:4.0.3' } } @@ -59,7 +59,7 @@ gwt { } farm { - webapp draftWar.archivePath, contextPath: "/$name" + webapp draftWar.getArchiveFile().get(), contextPath: "/$name" } project.afterEvaluate { diff --git a/vtm-web/build.gradle b/vtm-web/build.gradle index f31971e2..aa2b32a9 100644 --- a/vtm-web/build.gradle +++ b/vtm-web/build.gradle @@ -3,7 +3,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'org.wisepersist:gwt-gradle-plugin:1.1.15' + classpath 'org.wisepersist:gwt-gradle-plugin:1.1.19' } }