Skip to content

Commit 979279f

Browse files
authored
Update Gradle version to 7.4.2 (#89)
1 parent 8aa34d3 commit 979279f

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

buildSrc/build.gradle.kts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,10 @@ tasks.withType<KotlinCompile>().configureEach {
3838
freeCompilerArgs += "-Xskip-runtime-version-check"
3939
}
4040
}
41+
42+
// Silence the following warning:
43+
// 'compileJava' task (current target is 17) and 'compileKotlin' task (current target is 1.8) jvm target compatibility should be set to the same Java version.
44+
java {
45+
sourceCompatibility = JavaVersion.VERSION_1_8
46+
targetCompatibility = JavaVersion.VERSION_1_8
47+
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-all.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)