From d827394810da5d0ec91b3587aa9df432082faa58 Mon Sep 17 00:00:00 2001 From: Jenny Date: Thu, 13 Mar 2025 13:37:33 +0100 Subject: [PATCH] 1.20.3 working --- build.gradle | 10 +++++++++- gradle.properties | 12 ++++++------ 2 files changed, 15 insertions(+), 7 deletions(-) diff --git a/build.gradle b/build.gradle index 3c659e0..34a31d7 100644 --- a/build.gradle +++ b/build.gradle @@ -42,7 +42,9 @@ minecraft { // // Use non-default mappings at your own risk. They may not always work. // Simply re-run your setup task after changing the mappings to update your workspace. - mappings channel: mapping_channel, version: mapping_version + minecraft { + mappings channel: mapping_channel, version: mapping_version + } // When true, this property will have all Eclipse/IntelliJ IDEA run configurations run the "prepareX" task for the given run configuration before launching the game. @@ -204,4 +206,10 @@ tasks.named('jar', Jar).configure { tasks.withType(JavaCompile).configureEach { options.encoding = 'UTF-8' // Use the UTF-8 charset for Java compilation +} + +sourceSets.each { + def dir = layout.buildDirectory.dir("sourcesSets/$it.name") + it.output.resourcesDir = dir + it.java.destinationDirectory = dir } \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index 85e0b1a..9685fe2 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,17 +1,17 @@ org.gradle.jvmargs=-Xmx3G org.gradle.daemon=false # The Minecraft version must agree with the Forge version to get a valid artifact -minecraft_version=1.20.2 +minecraft_version=1.20.3 # The Minecraft version range can use any release version of Minecraft as bounds. # Snapshots, pre-releases, and release candidates are not guaranteed to sort properly # as they do not follow standard versioning conventions. -minecraft_version_range=[1.20.2] +minecraft_version_range=[1.20.3] # The Forge version must agree with the Minecraft version to get a valid artifact -forge_version=48.1.0 +forge_version=49.0.2 # The Forge version range can use any version of Forge as bounds or match the loader version range -forge_version_range=[48,) +forge_version_range=[49,) # The loader version range can only use the major version of Forge/FML as bounds -loader_version_range=[48,) +loader_version_range=[49,) # The mapping channel to use for mappings. # The default set of supported mapping channels are ["official", "snapshot", "snapshot_nodoc", "stable", "stable_nodoc"]. # Additional mapping channels can be registered through the "channelProviders" extension in a Gradle plugin. @@ -29,7 +29,7 @@ loader_version_range=[48,) mapping_channel=official # The mapping version to query from the mapping channel. # This must match the format required by the mapping channel. -mapping_version=1.20.2 +mapping_version=1.20.3 # The unique mod identifier for the mod. Must be lowercase in English locale. Must fit the regex [a-z][a-z0-9_]{1,63} # Must match the String constant located in the main mod class annotated with @Mod. mod_id=xp2items