diff --git a/build.gradle.kts b/build.gradle.kts index b5b382c7bc..3f73f2ceb1 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -42,7 +42,7 @@ plugins { application } -val localGitCommit = try { +val localGitCommit: String = try { val projectPath = rootProject.projectDir.absolutePath Grgit.open(mapOf("dir" to projectPath)).head().id } catch (_: Exception) { @@ -96,7 +96,7 @@ subprojects { } } - mavenCentral(); + mavenCentral() } apply() diff --git a/buildSrc/build.gradle.kts b/buildSrc/build.gradle.kts index 00e689a37d..d7c95b0f5e 100644 --- a/buildSrc/build.gradle.kts +++ b/buildSrc/build.gradle.kts @@ -36,8 +36,4 @@ dependencies { implementation(gradleApi()) implementation(group = "net.runelite", name = "fernflower", version = "07082019") implementation(group = "org.json", name = "json", version = "20190722") -} - -kotlinDslPluginOptions { - experimentalWarning.set(false) } \ No newline at end of file