File tree Expand file tree Collapse file tree 6 files changed +22
-31
lines changed
Expand file tree Collapse file tree 6 files changed +22
-31
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ preprocess {
1717 def mc1215 = createNode(" 1.21.5" , 1_21_05, " mojang" )
1818 def mc1218 = createNode(" 1.21.8" , 1_21_08, " mojang" )
1919 def mc12110 = createNode(" 1.21.10" , 1_21_10, " mojang" )
20+ def mc12111 = createNode(" 1.21.11" , 1_21_11, " mojang" )
2021
2122 mc1165. link(mc1171, null )
2223 mc1171. link(mc1182, null )
@@ -28,6 +29,7 @@ preprocess {
2829 mc1211. link(mc1215, null )
2930 mc1215. link(mc1218, null )
3031 mc1218. link(mc12110, null )
32+ mc12110. link(mc12111, null )
3133}
3234
3335def ENV = System . getenv()
Original file line number Diff line number Diff line change 11[versions ]
22# Gradle Plugins
3- fabric-loom = " 1.12 -SNAPSHOT"
4- preprocessor = " d452ef7 "
3+ fabric-loom = " 1.15 -SNAPSHOT"
4+ preprocessor = " c5abb4f "
55grgit = " 5.3.3"
66yamlang = " 1.5.0"
77replace-token = " 1.2.0"
Original file line number Diff line number Diff line change 1010 " 1.21.1" ,
1111 " 1.21.5" ,
1212 " 1.21.8" ,
13- " 1.21.10"
13+ " 1.21.10" ,
14+ " 1.21.11"
1415 ]
1516}
Original file line number Diff line number Diff line change @@ -16,11 +16,6 @@ repositories {
1616 url = " https://api.modrinth.com/maven"
1717 }
1818
19- maven {
20- name = " HangBing Proxy"
21- url = " https://repository.hanbings.io/proxy"
22- }
23-
2419 maven {
2520 name = " Nyan Maven"
2621 url = " https://maven.hendrixshen.moe/releases"
@@ -86,23 +81,6 @@ tasks.named("runClient") {
8681 }
8782}
8883
89- // Useless, but we write here.
90- // Setup server default settings.
91- tasks. named(" runServer" ) {
92- doFirst {
93- // Agree eula before server init.
94- layout. projectDirectory. file(" run/server/eula.txt" ). asFile. with { File file ->
95- if (! file. exists()) {
96- file. parentFile. mkdirs()
97- file. withWriter { BufferedWriter writer ->
98- writer. writeLine(" eula=true" )
99- }
100- }
101- null // We don't need to return anything.
102- }
103- }
104- }
105-
10684loom {
10785 runConfigs. configureEach {
10886 // Dump modified classes automatically.
@@ -120,11 +98,6 @@ loom {
12098 runDir(" run/client" )
12199 }
122100
123- // Useless, but we write here.
124- runConfigs. server {
125- runDir(" run/server" )
126- }
127-
128101 mixin {
129102 // suppress "Cannot remap xxx because it does not exists in any of the targets" warning. It does not respect `remap = false` :(
130103 useLegacyMixinAp = true
Original file line number Diff line number Diff line change 1+ # Dependency Versions
2+ minecraft_dependency =1.21.11
3+ minecraft_version =1.21.11
4+ minecraft_out =1.21.11
5+
6+ # Required Libraries
7+ # FabricAPI 0.141.3+1.21.11
8+ fabric_version =0.141.3+1.21.11
9+
10+ # LibGui 15.1.0+1.21.11
11+ libgui_version =15.1.0+1.21.11
12+
13+ # Runtime Libraries - Only for development environment
14+ # Mod Menu - 17.0.0-beta.2
15+ modmenu_version =17.0.0-beta.2
Original file line number Diff line number Diff line change 1- 1.21.10
1+ 1.21.11
You can’t perform that action at this time.
0 commit comments