File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed
Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 11org.gradle.jvmargs =-Dfile.encoding =UTF-8
22org.gradle.warning.mode =all
3+ org.gradle.configuration-cache =true
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =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
44networkTimeout =10000
55validateDistributionUrl =true
66zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff 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+
5158sourceSets {
5259 create(" common" ) {
5360 compileClasspath + = sourceSets.main.get().output
You can’t perform that action at this time.
0 commit comments