Skip to content

Commit 964a800

Browse files
committed
Update gradle version to 8.1
* Removed deprecated experimentalWarning from kotlinDslOptions * Manually set jvmToolChain(8) for JVM target compatibility in subprojects
1 parent 4c12083 commit 964a800

File tree

5 files changed

+13
-5
lines changed

5 files changed

+13
-5
lines changed

atomicfu-gradle-plugin/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,3 +98,7 @@ if (isKotlinVersionAtLeast(ext.kotlin_version, 1, 9)) {
9898
exclude "**/JsLegacyTransformationTest*", "**/MppLegacyTransformationTest*"
9999
}
100100
}
101+
102+
kotlin {
103+
jvmToolchain(8)
104+
}

atomicfu-maven-plugin/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ dependencies {
1717
api 'org.apache.maven.plugin-tools:maven-plugin-annotations:3.5'
1818
}
1919

20+
kotlin {
21+
jvmToolchain(8)
22+
}
23+
2024
def outputDir = compileKotlin.destinationDirectory
2125

2226
publishing.publications {

atomicfu-transformer/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,7 @@ dependencies {
1919
api "org.mozilla:rhino:1.7.10"
2020
api "org.jetbrains.kotlinx:kotlinx-metadata-jvm:$kotlinx_metadata_version"
2121
}
22+
23+
kotlin {
24+
jvmToolchain(8)
25+
}

buildSrc/build.gradle.kts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,3 @@ plugins {
88
repositories {
99
mavenCentral()
1010
}
11-
12-
kotlinDslPluginOptions {
13-
experimentalWarning.set(false)
14-
}

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
33
zipStoreBase=GRADLE_USER_HOME
44
zipStorePath=wrapper/dists
5-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-all.zip
5+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1-all.zip

0 commit comments

Comments
 (0)