diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-11-24 16:46:54 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-24 16:46:54 +0100 |
| commit | a367b17de2bd1e10fd46c6133bf9ce5c2aca9867 (patch) | |
| tree | bc8072ed208881c28fe146fc578051774fec0858 /buildSrc | |
| parent | bacabd90c5bfb0388f477f64807e8ac8a7f5321b (diff) | |
| parent | b3fdcaabd6d345de31d736480998d2f32cb829f5 (diff) | |
merge: Update to Kotlin 1.6 (#45)
This pull request updates the Kotlin version used by OpenDC to 1.6
as well as updating the dependencies to their latest version where possible.
Diffstat (limited to 'buildSrc')
| -rw-r--r-- | buildSrc/build.gradle.kts | 4 | ||||
| -rw-r--r-- | buildSrc/src/main/kotlin/kotlin-conventions.gradle.kts | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/buildSrc/build.gradle.kts b/buildSrc/build.gradle.kts index 0dab8647..f38919fd 100644 --- a/buildSrc/build.gradle.kts +++ b/buildSrc/build.gradle.kts @@ -31,9 +31,9 @@ repositories { } dependencies { - implementation(kotlin("gradle-plugin", version = "1.5.31")) + implementation(kotlin("gradle-plugin", version = "1.6.0")) implementation("org.jlleitschuh.gradle:ktlint-gradle:10.2.0") - implementation("org.jetbrains.kotlin:kotlin-allopen:1.5.31") + implementation("org.jetbrains.kotlin:kotlin-allopen:1.6.0") implementation("me.champeau.jmh:jmh-gradle-plugin:0.6.6") implementation("org.jetbrains.dokka:dokka-gradle-plugin:1.5.30") implementation("gradle.plugin.com.github.jengelman.gradle.plugins:shadow:7.0.0") diff --git a/buildSrc/src/main/kotlin/kotlin-conventions.gradle.kts b/buildSrc/src/main/kotlin/kotlin-conventions.gradle.kts index 6e4cab89..a69836f7 100644 --- a/buildSrc/src/main/kotlin/kotlin-conventions.gradle.kts +++ b/buildSrc/src/main/kotlin/kotlin-conventions.gradle.kts @@ -35,6 +35,7 @@ repositories { java { sourceCompatibility = Libs.jvmTarget + targetCompatibility = Libs.jvmTarget } tasks.withType<KotlinCompile>().configureEach { |
