Skip to content

Commit

Permalink
W.I.P 1.21-RC1
Browse files Browse the repository at this point in the history
  • Loading branch information
Leclowndu93150 committed Jun 12, 2024
1 parent 633d947 commit 6eda7a6
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 8 deletions.
10 changes: 9 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
id 'eclipse'
id 'idea'
id 'maven-publish'
id 'net.neoforged.gradle.userdev' version '7.0.107'
id 'net.neoforged.gradle.userdev' version '7.0.142'
}

version = mod_version
Expand All @@ -12,6 +12,14 @@ group = mod_group_id
repositories {
mavenLocal()
maven { url 'https://modmaven.dev/' }
maven {
name 'Maven for PR #1076' // https://github.com/neoforged/NeoForge/pull/1076
url 'https://prmaven.neoforged.net/NeoForge/pr1076'
content {
includeModule('net.neoforged', 'testframework')
includeModule('net.neoforged', 'neoforge')
}
}
}

base {
Expand Down
14 changes: 7 additions & 7 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
# Sets default memory used for gradle commands. Can be overridden by user or command line properties.
#org.gradle.jvmargs=
org.gradle.jvmargs=-Xmx3G
org.gradle.daemon=false
org.gradle.debug=false

#read more on this at https://github.com/neoforged/NeoGradle/blob/NG_7.0/README.md#apply-parchment-mappings
# you can also find the latest versions at: https://parchmentmc.org/docs/getting-started
neogradle.subsystems.parchment.minecraftVersion=1.20.4
neogradle.subsystems.parchment.mappingsVersion=2024.04.14
neogradle.subsystems.parchment.minecraftVersion=1.20.6
neogradle.subsystems.parchment.mappingsVersion=2024.06.02
# Environment Properties
# You can find the latest versions here: https://projects.neoforged.net/neoforged/neoforge
# The Minecraft version must agree with the Neo version to get a valid artifact
minecraft_version=1.20.6
minecraft_version=1.21-rc1
# 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.6,1.21)
minecraft_version_range=[1.21,1.22)
# The Neo version must agree with the Minecraft version to get a valid artifact
neo_version=20.6.2-beta
neo_version=21.0.0-alpha.1.21-rc1.20240612.183440
# The Neo version range can use any version of Neo as bounds
neo_version_range=[20.6,)
neo_version_range=[21.0,)
# The loader version range can only use the major version of FML as bounds
loader_version_range=[2,)

Expand Down

0 comments on commit 6eda7a6

Please sign in to comment.