File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 1
1
import org.gradle.accessors.dm.LibrariesForLibs
2
+ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
2
3
import org.jlleitschuh.gradle.ktlint.KtlintExtension
3
4
4
5
plugins {
@@ -56,7 +57,13 @@ tasks.build {
56
57
dependsOn(tasks.jacocoTestReport)
57
58
}
58
59
59
- tasks.withType<Test >().configureEach {
60
+ tasks.withType<KotlinCompile > {
61
+ compilerOptions {
62
+ freeCompilerArgs.set(listOf (" -Xannotation-default-target=param-property" ))
63
+ }
64
+ }
65
+
66
+ tasks.withType<Test > {
60
67
useJUnitPlatform()
61
68
}
62
69
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ java = "17"
6
6
jreleaser = " 1.18.0"
7
7
junit = " 5.13.1"
8
8
kotest = " 5.9.1"
9
- kotlin = " 2.1.21 "
9
+ kotlin = " 2.2.0 "
10
10
kotlinxCoroutines = " 1.10.2"
11
11
ktlint = " 1.6.0"
12
12
ktlintPlugin = " 12.3.0"
You can’t perform that action at this time.
0 commit comments