Skip to content

Commit b35ffc3

Browse files
committed
build: updated Gradle, enabled configuration cache
1 parent 40b7cd6 commit b35ffc3

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
org.gradle.jvmargs=-Dfile.encoding=UTF-8
22
org.gradle.warning.mode=all
3+
org.gradle.configuration-cache=true

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-rc-1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

lib/build.gradle.kts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,13 @@ tasks.javadoc {
4848
options.jFlags = listOf("-Duser.language=en", "-Duser.country=US")
4949
}
5050

51+
// Workaround for Gradle 9 support of Bnd https://github.com/bndtools/bnd/issues/6346
52+
tasks.jar {
53+
bundle {
54+
properties.put("project.group", provider { project.group })
55+
}
56+
}
57+
5158
sourceSets {
5259
create("common") {
5360
compileClasspath += sourceSets.main.get().output

0 commit comments

Comments
 (0)