diff --git a/build.gradle.kts b/build.gradle.kts index b51d23f..d63dff5 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -6,7 +6,7 @@ plugins { idea `maven-publish` id("io.freefair.lombok") version "8.6" - id ("net.neoforged.gradle.userdev") version ("7.0.143") + id ("net.neoforged.gradle.userdev") version ("7.0.150") } val minecraftVersion: String by project @@ -38,10 +38,17 @@ repositories { } maven { url = URI.create("https://maven.blamejared.com") + name = "BlameJared" } - maven { url = URI.create("https://maven.shedaniel.me/") } - maven { url = URI.create("https://maven.architectury.dev/") } + maven { + url = URI.create("https://maven.shedaniel.me/") + name = "Shedaniel" + } + maven { + url = URI.create("https://maven.architectury.dev/") + name = "Architectury" + } } base { @@ -155,9 +162,7 @@ dependencies { // For all intends and purposes: You can treat this dependency as if it is a normal library you would use. implementation ("net.neoforged:neoforge:${neoVersion}") - // Wait until 1.20.6 has a stable neoforge version, so that all mods should work when updated -// implementation("mcjty.theoneprobe:theoneprobe:${topVersion}") -// + implementation("mcjty.theoneprobe:theoneprobe:${topVersion}") // runtimeOnly("me.shedaniel:RoughlyEnoughItems-neoforge:${reiVersion}") // compileOnly("me.shedaniel:RoughlyEnoughItems-api-neoforge:${reiVersion}") // compileOnly("me.shedaniel:RoughlyEnoughItems-default-plugin-neoforge:${reiVersion}") diff --git a/gradle.properties b/gradle.properties index 1aebdc5..05620c1 100644 --- a/gradle.properties +++ b/gradle.properties @@ -12,15 +12,14 @@ minecraftVersion=1.21.0 # as they do not follow standard versioning conventions. minecraftVersionRange=[1.21.0,1.22) # The Neo version must agree with the Minecraft version to get a valid artifact -neoVersion=21.0.10-beta +neoVersion=21.0.37-beta # The Neo version range can use any version of Neo as bounds neoVersionRange=[21,) # The loader version range can only use the major version of FML as bounds loaderVersionRange=[2,) -# TODO: Update to newer parchment version -neogradle.subsystems.parchment.minecraftVersion=1.20.6 -neogradle.subsystems.parchment.mappingsVersion=2024.05.01 +neogradle.subsystems.parchment.minecraftVersion=1.21 +neogradle.subsystems.parchment.mappingsVersion=2024.06.23 ## Mod Properties @@ -45,5 +44,5 @@ modDescription= # Dependencies junitVersion=5.10.2 assertjVersion=3.25.1 -topVersion=1.20.5_neo-11.1.1-2 -reiVersion=15.0.728 \ No newline at end of file +topVersion=1.21_neo-12.0.0-1 +reiVersion=16.0.729 \ No newline at end of file