diff --git a/.gitignore b/.gitignore index 1db5dfc..4d2b611 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ # User-specific stuff .idea/ +.vscode/ *.iml *.ipr diff --git a/build.gradle b/build.gradle index 1a80a81..df7b98e 100644 --- a/build.gradle +++ b/build.gradle @@ -13,6 +13,7 @@ subprojects { jar { from "LICENSE" + inputs.property "archivesName", project.base.archivesName } java { @@ -21,7 +22,6 @@ subprojects { if (JavaVersion.current() < javaVersion) { toolchain.languageVersion = JavaLanguageVersion.of(targetJavaVersion) } - archivesBaseName = project.archives_base_name withSourcesJar() } diff --git a/fabric/build.gradle b/fabric/build.gradle index 6954717..993eb7e 100644 --- a/fabric/build.gradle +++ b/fabric/build.gradle @@ -1,5 +1,5 @@ plugins { - id 'fabric-loom' version '1.9.2' + id 'fabric-loom' version '1.15-SNAPSHOT' } group 'me.lunaluna.elytra-recast' @@ -22,7 +22,6 @@ dependencies { modApi("me.shedaniel.cloth:cloth-config-fabric:$cloth_config_version") { exclude(group: "net.fabricmc.fabric-api") } - // Gson implementation "com.google.code.gson:gson:$gson_version" } diff --git a/fabric/gradle.properties b/fabric/gradle.properties index 171bf64..2e88975 100644 --- a/fabric/gradle.properties +++ b/fabric/gradle.properties @@ -1,9 +1,9 @@ # Fabric - minecraft_version=1.21.4 - yarn_mappings=1.21.4+build.8 - loader_version=0.16.10 + minecraft_version=1.21.8 + yarn_mappings=1.21.8+build.1 + loader_version=0.17.2 # Dependencies - mod_menu_version=13.0.2 - cloth_config_version=17.0.144 + mod_menu_version=15.0.0 + cloth_config_version=19.0.147 # Libraries gson_version=2.9.0 diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 94113f2..0b001af 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.11-bin.zip +distributionUrl=https://mirrors.aliyun.com/github/releases/gradle/gradle-distributions/v9.2.1/gradle-9.2.1-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME