File tree Expand file tree Collapse file tree
plugins/kmp-conventions/src/main/kotlin Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ plugins {
99kotlin {
1010
1111 compilerOptions {
12- freeCompilerArgs.add(" -Xsuppress-warning =ASSIGNED_VALUE_IS_NEVER_READ" )
12+ freeCompilerArgs.add(" -Xwarning-level =ASSIGNED_VALUE_IS_NEVER_READ:disabled " )
1313 }
1414
1515 sourceSets {
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ idea-ext-plugin = "1.1.10"
3939
4040junit = " 4.13.2"
4141
42- kotlin = " 2.1.21 "
42+ kotlin = " 2.2.0 "
4343k-poet = " 2.2.0"
4444kotlinter = " 5.0.1"
4545
@@ -51,7 +51,7 @@ kotlinx-io = "0.6.0"
5151kotlinx-serialization = " 1.8.0"
5252kotlinx-test-resources = " 0.10.0"
5353
54- ksp = " 2.1.21 -2.0.1 "
54+ ksp = " 2.2.0 -2.0.2 "
5555
5656result = " 2.0.1"
5757
Original file line number Diff line number Diff line change @@ -33,9 +33,9 @@ kotlin {
3333
3434 freeCompilerArgs.add(" -opt-in=kotlin.ExperimentalUnsignedTypes" )
3535
36- freeCompilerArgs.add(" -Xsuppress-warning =NOTHING_TO_INLINE" )
37- freeCompilerArgs.add(" -Xsuppress-warning =UNUSED_ANONYMOUS_PARAMETER" )
38- freeCompilerArgs.add(" -Xsuppress-warning =REDUNDANT_VISIBILITY_MODIFIER" )
36+ freeCompilerArgs.add(" -Xwarning-level =NOTHING_TO_INLINE:disabled " )
37+ freeCompilerArgs.add(" -Xwarning-level =UNUSED_ANONYMOUS_PARAMETER:disabled " )
38+ freeCompilerArgs.add(" -Xwarning-level =REDUNDANT_VISIBILITY_MODIFIER:disabled " )
3939
4040 freeCompilerArgs.add(" -Xnon-local-break-continue" )
4141 freeCompilerArgs.add(" -Xwhen-guards" )
Original file line number Diff line number Diff line change 1- import org.gradle.kotlin.dsl.compileOnly
2-
31plugins {
42 `kotlin- dsl`
53 `java- gradle- plugin`
You can’t perform that action at this time.
0 commit comments