Skip to content

Commit bb2d6e1

Browse files
authored
Fix Gradle deprecation warnings and clean up some code warnings (#812)
* Fix Gradle deprecation warnings and clean up some code warnings * Fixing build * try disable required signing * Back to nebula 11.4.0 * Update to Kotlin 2 * Remove dependsOn that no longer exists --------- Co-authored-by: pbakker <$(git --no-pager log --format=format:'%ae' -n 1)>
1 parent 0665b3a commit bb2d6e1

File tree

18 files changed

+2678
-963
lines changed

18 files changed

+2678
-963
lines changed

build.gradle

+4-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompilationTask
2020
*/
2121

2222
plugins {
23-
id 'org.jetbrains.kotlin.jvm' version "1.9.25" apply false
23+
id 'org.jetbrains.kotlin.jvm' version "2.1.20" apply false
2424
id 'com.netflix.nebula.netflixoss' version '11.4.0'
2525
id "org.jmailen.kotlinter" version "5.0.1"
2626
}
@@ -31,7 +31,7 @@ allprojects {
3131

3232
ext {
3333
Versions = [
34-
KOTLIN_VERSION: '1.9.25'
34+
KOTLIN_VERSION: '2.1.20'
3535
]
3636
}
3737

@@ -53,6 +53,8 @@ allprojects {
5353
testImplementation 'org.assertj:assertj-core:3.27.+'
5454
testImplementation 'org.junit.jupiter:junit-jupiter'
5555
testImplementation 'org.junit.jupiter:junit-jupiter-params'
56+
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
57+
5658
}
5759

5860
tasks.withType(Test).configureEach {

0 commit comments

Comments
 (0)