diff --git a/build.gradle b/build.gradle index b3fa346..550a18f 100644 --- a/build.gradle +++ b/build.gradle @@ -64,14 +64,14 @@ processResources { } tasks.withType(JavaCompile).configureEach { - it.options.release = 17 + it.options.release = 21 } java { withSourcesJar() - sourceCompatibility = JavaVersion.VERSION_17 - targetCompatibility = JavaVersion.VERSION_17 + sourceCompatibility = JavaVersion.VERSION_21 + targetCompatibility = JavaVersion.VERSION_21 } jar { @@ -87,11 +87,11 @@ modrinth { debugMode = false uploadFile = remapJar loaders = ["fabric", "quilt"] - syncBodyFrom = rootProject.file("README.md").text + // syncBodyFrom = rootProject.file("README.md").text dependencies { required.project "fabric-api" optional.version "modmenu", "${project.modmenu_version}" - optional.version "yacl", "${project.yacl_version}-fabric" + optional.version "yacl", "${project.yacl_version}" } }