diff options
author | isxander <xander@isxander.dev> | 2024-05-27 15:29:56 +0100 |
---|---|---|
committer | isxander <xander@isxander.dev> | 2024-05-27 15:29:56 +0100 |
commit | 41253828df7c2066b5df29a32aa8e512f34ad85a (patch) | |
tree | 43d7c2c591a8d2112a06d6916ce3f55ffc9889da /build.gradle.kts | |
parent | 41fd559c4e8c4605b9c74d66f19c92fd561df5b3 (diff) | |
download | YetAnotherConfigLib-41253828df7c2066b5df29a32aa8e512f34ad85a.tar.gz YetAnotherConfigLib-41253828df7c2066b5df29a32aa8e512f34ad85a.tar.bz2 YetAnotherConfigLib-41253828df7c2066b5df29a32aa8e512f34ad85a.zip |
Fix kotlin sourceset not being included due to broken stonecutter
Diffstat (limited to 'build.gradle.kts')
-rw-r--r-- | build.gradle.kts | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index 9bd118d..26ef177 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -20,7 +20,7 @@ val isForgeLike = isNeoforge || isForge val mcVersion = stonecutter.current.version group = "dev.isxander" -val versionWithoutMC = "3.4.3" +val versionWithoutMC = "3.4.4" version = "$versionWithoutMC+${stonecutter.current.project}" val snapshotVer = "${grgit.branch.current().name.replace('/', '.')}-SNAPSHOT" @@ -222,14 +222,7 @@ tasks { dependsOn("publishMods") dependsOn("publish") } -} -java { - targetCompatibility = JavaVersion.VERSION_17 - sourceCompatibility = JavaVersion.VERSION_17 -} - -tasks { withType<JavaCompile> { options.release.set(findProperty("java.version")!!.toString().toInt()) } |