Skip to content

Commit bd9d417

Browse files
committed
Fix Kotlin compiler configuration
The `-Xopt-in` option is now deprecated and replaced by `-opt-in`.
1 parent e083dc8 commit bd9d417

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ configure(moduleProjects) {
4343
jvmTarget = "1.8"
4444
languageVersion = "1.3"
4545
apiVersion = "1.3"
46-
freeCompilerArgs = ["-Xjsr305=strict", "-Xsuppress-version-warnings", "-Xopt-in=kotlin.RequiresOptIn"]
46+
freeCompilerArgs = ["-Xjsr305=strict", "-Xsuppress-version-warnings", "-opt-in=kotlin.RequiresOptIn"]
4747
allWarningsAsErrors = true
4848
}
4949
}

0 commit comments

Comments
 (0)