Skip to content

Commit 38eb73f

Browse files
committed
upgrade gretty to 5.0.1 and use jetty12
Gretty 4.1.10 uses the deprecated archivePath property which was removed in Gradle 9, causing jettyStartWar to fail with: "Could not get unknown property 'archivePath' for task ':war'"
1 parent 90087f3 commit 38eb73f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ buildscript {
1111

1212
plugins {
1313
id 'war'
14-
id 'org.gretty' version '4.1.10'
14+
id 'org.gretty' version '5.0.1'
1515
id 'com.vaadin'
1616
}
1717

@@ -25,7 +25,7 @@ repositories {
2525

2626
gretty {
2727
contextPath = "/"
28-
servletContainer = 'jetty11'
28+
servletContainer = 'jetty12'
2929
}
3030

3131
// The following pnpmEnable = false is not needed as npm is used by default,

0 commit comments

Comments
 (0)