Skip to content

Commit 5ff1520

Browse files
committed
upgrade gradle to 8.13, thanks @karussell
1 parent ca18a31 commit 5ff1520

5 files changed

Lines changed: 224 additions & 144 deletions

File tree

generator/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ tasks.register('fatJar', Jar) {
99
manifest {
1010
attributes "Main-Class": "$mainClassName"
1111
}
12-
baseName = project.name + "-all"
13-
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
12+
archiveBaseName.set("${project.name}-all")
13+
from { configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
1414
with jar
1515
}
1616

gradle/wrapper/gradle-wrapper.jar

6.95 KB
Binary file not shown.
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
#Sun Jul 10 18:00:54 CEST 2022
21
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
42
distributionPath=wrapper/dists
5-
zipStorePath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
64
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists

gradlew

Lines changed: 187 additions & 107 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)