User: joe Date: 24 Jun 25 15:21 Revision: 5519c363e28c8e8030c9e25b5dbe6736c79f8a02 Summary: Update templates submodule TeamCity URL: https://ci.mcdev.io/viewModification.html?tab=vcsModificationFiles&modId=10088&personal=false Index: templates/bukkit/build.gradle.kts.ft =================================================================== --- templates/bukkit/build.gradle.kts.ft (revision 32fe678566d2b65b13c8306d9b0928c0cbb2a7fd) +++ templates/bukkit/build.gradle.kts.ft (revision 5519c363e28c8e8030c9e25b5dbe6736c79f8a02) @@ -1,6 +1,6 @@ plugins { kotlin("jvm") version "${KOTLIN_VERSION}" - id("com.github.johnrengelman.shadow") version "8.1.1" + id("com.gradleup.shadow") version "8.3.0" id("xyz.jpenilla.run-paper") version "2.3.1" } Index: templates/bukkit/paper.mcdev.template.json =================================================================== --- templates/bukkit/paper.mcdev.template.json (revision 32fe678566d2b65b13c8306d9b0928c0cbb2a7fd) +++ templates/bukkit/paper.mcdev.template.json (revision 5519c363e28c8e8030c9e25b5dbe6736c79f8a02) @@ -28,6 +28,7 @@ "type": "semantic_version", "forceDropdown": true, "options": [ + "1.21.6", "1.21.5", "1.21.4", "1.21.3", Index: templates/fabric/.mcdev.template.json =================================================================== --- templates/fabric/.mcdev.template.json (revision 32fe678566d2b65b13c8306d9b0928c0cbb2a7fd) +++ templates/fabric/.mcdev.template.json (revision 5519c363e28c8e8030c9e25b5dbe6736c79f8a02) @@ -187,7 +187,7 @@ "template": "../gradle-wrapper.properties.ft", "destination": "gradle/wrapper/gradle-wrapper.properties", "properties": { - "GRADLE_VERSION": "8.11.1" + "GRADLE_VERSION": "8.14.1" } }, { Index: templates/fabric/mixins.json.ft =================================================================== --- templates/fabric/mixins.json.ft (revision 32fe678566d2b65b13c8306d9b0928c0cbb2a7fd) +++ templates/fabric/mixins.json.ft (revision 5519c363e28c8e8030c9e25b5dbe6736c79f8a02) @@ -17,5 +17,8 @@ #end "injectors": { "defaultRequire": 1 + }, + "overwrites": { + "requireAnnotations": true } } Index: templates/forge/MixinsConfig.json.ft =================================================================== --- templates/forge/MixinsConfig.json.ft (revision 32fe678566d2b65b13c8306d9b0928c0cbb2a7fd) +++ templates/forge/MixinsConfig.json.ft (revision 5519c363e28c8e8030c9e25b5dbe6736c79f8a02) @@ -10,5 +10,8 @@ ], "injectors": { "defaultRequire": 1 + }, + "overwrites": { + "requireAnnotations": true } } Index: templates/neoforge/MixinsConfig.json.ft =================================================================== --- templates/neoforge/MixinsConfig.json.ft (revision 32fe678566d2b65b13c8306d9b0928c0cbb2a7fd) +++ templates/neoforge/MixinsConfig.json.ft (revision 5519c363e28c8e8030c9e25b5dbe6736c79f8a02) @@ -2,13 +2,18 @@ "required": true, "minVersion": "0.8", "package": "${MAIN_CLASS.packageName}.mixin", - "compatibilityLevel": "JAVA_8", + "compatibilityLevel": "JAVA_${JAVA_VERSION}", +#if ($VERSIONS.minecraftVersion.compareTo($mcver.MC1_20_2) < 0) "refmap": "${MOD_ID}.refmap.json", +#end "mixins": [ ], "client": [ ], "injectors": { "defaultRequire": 1 + }, + "overwrites": { + "requireAnnotations": true } }