Skip to content

Commit

Permalink
Update Gradle version to 7.4.2 (#89)
Browse files Browse the repository at this point in the history
  • Loading branch information
martinbonnin committed Jun 22, 2022
1 parent 8aa34d3 commit 979279f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions buildSrc/build.gradle.kts
Expand Up @@ -38,3 +38,10 @@ tasks.withType<KotlinCompile>().configureEach {
freeCompilerArgs += "-Xskip-runtime-version-check"
}
}

// Silence the following warning:
// '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.
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 979279f

Please sign in to comment.