Updated Versions

This commit is contained in:
Tschipp 2025-12-29 21:06:40 +01:00
parent eab2ef67b7
commit 08bf927526
5 changed files with 19 additions and 8 deletions

View File

@ -2,7 +2,7 @@ plugins {
id 'java'
id 'maven-publish'
id 'idea'
id 'fabric-loom' version '1.6-SNAPSHOT'
id 'fabric-loom' version '1.7-SNAPSHOT'
}
base {
archivesName = "${mod_id}-fabric-${minecraft_version}"

View File

@ -1,7 +1,7 @@
plugins {
id 'idea'
id 'maven-publish'
id 'net.neoforged.gradle.userdev' version '7.0.145'
id 'net.neoforged.gradle.userdev' version '7.0.160'
id 'java-library'
}

View File

@ -11,6 +11,17 @@ subprojects {
java.withSourcesJar()
java.withJavadocJar()
configurations.all {
resolutionStrategy {
// Force the version of ASM that NeoForge wants (9.8 in your error log)
force 'org.ow2.asm:asm-analysis:9.8'
force 'org.ow2.asm:asm:9.8'
force 'org.ow2.asm:asm-tree:9.8'
force 'org.ow2.asm:asm-commons:9.8'
force 'org.ow2.asm:asm-util:9.8'
}
}
jar {
from(rootProject.file("LICENSE")) {
rename { "${it}_${mod_id}" }

View File

@ -1,5 +1,5 @@
# Project
version=2.2.3
version=2.2.4
group=tschipp.carryon
# Common
@ -10,21 +10,21 @@ mod_id=carryon
license=GNU LGPLv3
credits=
description=Carry On is a simple mod that improves game interaction by allowing players to pick up, carry, and place single block Tile Entities using only their empty hands.
minecraft_version_range=[1.21, 1.22)
minecraft_version_range=[1.21.1, 1.21.2)
# Forge
forge_version=52.0.4
forge_version=52.1.0
forge_loader_version_range=[52,)
forge_version_range=[52,)
parchment_mappings=2024.07.28-1.21
//forge_ats_enabled=true
# Fabric
fabric_version=0.102.1+1.21.1
fabric_version=0.116.7+1.21.1
fabric_loader_version=0.16.2
parchment_mappings_fabric=1.21:2024.07.28
# Neoforge
neoforge_version=21.1.20
neoforge_version=21.1.217
neoforge_loader_version_range=[4,)
neogradle.subsystems.parchment.minecraftVersion=1.21
neogradle.subsystems.parchment.mappingsVersion=2024.07.28

Binary file not shown.