Skip to content

Commit 259f128

Browse files
committed
Updated Gradle, Fabric Loom, Fabric Loader, readded MixinExtras annotation processor to fix missing refmap entries, and fixed version from 2.0 to 2.0.0 to match semver.
1 parent 8299b53 commit 259f128

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

build.gradle.kts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import net.modificationstation.stationapi.gradle.SubprojectHelpers.addDependency
55

66
plugins {
77
id("maven-publish")
8-
id("fabric-loom") version "1.7.2"
9-
id("babric-loom-extension") version "1.7.3"
8+
id("fabric-loom") version "1.9-SNAPSHOT"
9+
id("babric-loom-extension") version "1.9.2"
1010
}
1111

1212
// https://stackoverflow.com/a/40101046 - Even with kotlin, gradle can't get it's shit together.
@@ -63,7 +63,7 @@ allprojects {
6363

6464
mappings("net.glasslauncher:biny:${project.properties["yarn_mappings"]}:v2")
6565

66-
modImplementation("babric:fabric-loader:${project.properties["loader_version"]}")
66+
modImplementation("net.fabricmc:fabric-loader:${project.properties["loader_version"]}")
6767

6868
"transitiveImplementation"("org.apache.commons:commons-lang3:3.12.0")
6969
"transitiveImplementation"("commons-io:commons-io:2.11.0")
@@ -102,6 +102,8 @@ allprojects {
102102
}
103103
// Optional bugfix mod for testing qol. Remove the // to enable.
104104
//modLocalRuntime "maven.modrinth:mojangfix:${project.properties["mojangfix_version"]}"
105+
106+
annotationProcessor("io.github.llamalad7:mixinextras-fabric:0.4.1")
105107
}
106108

107109
loom {

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Done to increase the memory available to gradle.
2-
org.gradle.jvmargs=-Xmx2G -XX:+UseParallelGC -XX:+HeapDumpOnOutOfMemoryError
2+
org.gradle.jvmargs=-Xmx16G -XX:+UseParallelGC -XX:+HeapDumpOnOutOfMemoryError
33
# Disables gradle's buggy (in minecraft's case) daemon.
44
# Also makes builds more reliable and less likely to randomly fail.
55
org.gradle.daemon=false
@@ -11,7 +11,7 @@ fabric.loom.multiProjectOptimisation=true
1111
# check these on https://fabricmc.net/use
1212
minecraft_version = b1.7.3
1313
yarn_mappings = b1.7.3+cbcfb39
14-
loader_version = 0.15.6-babric.2
14+
loader_version = 0.16.9
1515

1616
# Library Properties
1717
typetools_version = 0.8.3
@@ -22,7 +22,7 @@ fabric.loom.multiProjectOptimisation=true
2222
spasm_version = 0.2.2
2323

2424
# Mod Properties
25-
mod_version = 2.0-alpha.3
25+
mod_version = 2.0.0-alpha.3
2626
maven_group = net.modificationstation
2727
archives_base_name = StationAPI
2828

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
# Darwin, MinGW, and NonStop.
5656
#
5757
# (3) This script is generated from the Groovy template
58-
# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
58+
# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
5959
# within the Gradle project.
6060
#
6161
# You can find Gradle at https://github.com/gradle/gradle/.

0 commit comments

Comments
 (0)