We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d3a4c6 commit 3e75b7aCopy full SHA for 3e75b7a
1 file changed
build.gradle.kts
@@ -1,3 +1,5 @@
1
+import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
2
+
3
plugins {
4
kotlin("jvm") version "2.2.21"
5
kotlin("plugin.spring") version "2.2.21"
@@ -87,3 +89,7 @@ allOpen {
87
89
tasks.withType<Test> {
88
90
useJUnitPlatform()
91
}
92
+val compileKotlin: KotlinCompile by tasks
93
+compileKotlin.compilerOptions {
94
+ freeCompilerArgs.set(listOf("-Xannotation-default-target=param-property"))
95
+}
0 commit comments