A Minecraft server-side mod that adds various teleportation related commands
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix and update forgix, remove parchment

MrSnowy 534b661c 68f0177e

+37 -46
+7 -19
build.gradle
··· 2 2 id 'fabric-loom' version "${fabric_loom}" apply false 3 3 id 'net.neoforged.moddev' version "${neoforge_moddevgradle}" apply false 4 4 5 - id "io.github.pacifistmc.forgix" version "1.2.9" 5 + id "io.github.pacifistmc.forgix" version "${forgix_version}" 6 6 } 7 7 8 8 forgix { 9 - group = "dev.mrsnowy.teleport_commands" 10 - mergedJarName = "${mod_id}-${minecraft_version}-v${version}.jar" 11 - outputDir = "merged/build/libs" 12 - 13 - // NeoForge Project Configuration 14 - neoforge { 15 - projectName = "neoforge" // Name of the NeoForge subproject 16 - 17 - // // Mixin configuration files (if applicable) 18 - // mixin "${mod_id}.mixins.json" 19 - // mixin "${mod_id}-forge.mixins.json" 20 - jarLocation = "build/libs/${mod_id}-neoforge-${minecraft_version}-v${version}.jar" 21 - } 9 + archiveBaseName = "${mod_id}" 10 + archiveVersion = "merged-${minecraft_version}-v${version}" 11 + archiveClassifier = "" 22 12 23 - // Fabric Project Configuration 24 - fabric { 25 - projectName = "fabric" // Name of the Fabric subproject 13 + destinationDirectory = layout.projectDirectory.dir("merged/build/libs") 26 14 27 - jarLocation = "build/libs/${mod_id}-fabric-${minecraft_version}-v${version}.jar" 28 - } 15 + fabric() 16 + neoforge() 29 17 }
+13 -13
buildSrc/src/main/groovy/multiloader-common.gradle
··· 22 22 } 23 23 filter { includeGroupAndSubgroups('org.spongepowered') } 24 24 } 25 - exclusiveContent { 26 - forRepositories( 27 - maven { 28 - name = 'ParchmentMC' 29 - url = 'https://maven.parchmentmc.org/' 30 - }, 31 - maven { 32 - name = "NeoForge" 33 - url = 'https://maven.neoforged.net/releases' 34 - } 35 - ) 36 - filter { includeGroup('org.parchmentmc.data') } 37 - } 25 + // exclusiveContent { 26 + // forRepositories( 27 + // maven { 28 + // name = 'ParchmentMC' 29 + // url = 'https://maven.parchmentmc.org/' 30 + // }, 31 + // maven { 32 + // name = "NeoForge" 33 + // url = 'https://maven.neoforged.net/releases' 34 + // } 35 + // ) 36 + // filter { includeGroup('org.parchmentmc.data') } 37 + // } 38 38 maven { 39 39 name = 'BlameJared' 40 40 url = 'https://maven.blamejared.com'
+5 -5
common/build.gradle
··· 5 5 6 6 java { 7 7 toolchain { 8 - languageVersion = JavaLanguageVersion.of(25) 8 + languageVersion = JavaLanguageVersion.of("${java_version}") 9 9 } 10 10 } 11 11 ··· 20 20 neoFormVersion = neo_form_version 21 21 disableRecompilation = true 22 22 } 23 - parchment { 24 - minecraftVersion = parchment_minecraft 25 - mappingsVersion = parchment_version 26 - } 23 + // parchment { 24 + // minecraftVersion = parchment_minecraft 25 + // mappingsVersion = parchment_version 26 + // } 27 27 } 28 28 29 29 dependencies {
+8 -5
gradle.properties
··· 16 16 description=A server-side mod that adds various teleportation related commands. 17 17 minecraft_version_range=[26.1] 18 18 19 + # see https://github.com/PacifistMC/Forgix 20 + forgix_version = 2.0.0-SNAPSHOT.5.1 21 + 19 22 # see https://projects.neoforged.net/neoforged/neoform for new versions 20 23 neo_form_version=26.1-1 21 24 22 - # see https://parchmentmc.org/docs/getting-started#choose-a-version for new versions 23 - # TODO Update 26.1 24 - parchment_minecraft=1.21.11 25 - # There is no new version for now 26 - parchment_version=2025.12.20 25 + ## see https://parchmentmc.org/docs/getting-started#choose-a-version for new versions 26 + ## TODO Update 26.1 27 + #parchment_minecraft=1.21.11 28 + ## There is no new version for now 29 + #parchment_version=2025.12.20 27 30 28 31 # see https://fabricmc.net/develop/ for new versions 29 32 fabric_loader_version=0.18.5
+4 -4
neoforge/build.gradle
··· 21 21 accessTransformers.from(at.absolutePath) 22 22 } 23 23 24 - parchment { 25 - minecraftVersion = parchment_minecraft 26 - mappingsVersion = parchment_version 27 - } 24 + // parchment { 25 + // minecraftVersion = parchment_minecraft 26 + // mappingsVersion = parchment_version 27 + // } 28 28 29 29 runs { 30 30 configureEach {