diff options
-rw-r--r-- | build.gradle | 7 | ||||
-rw-r--r-- | gradle.properties | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle index 37511592..cc2887e0 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ plugins { - id 'fabric-loom' version '1.4-SNAPSHOT' + id 'fabric-loom' version '1.5-SNAPSHOT' id 'maven-publish' id 'com.modrinth.minotaur' version '2.+' } @@ -77,6 +77,11 @@ dependencies { loom { accessWidenerPath = file("src/main/resources/skyblocker.accesswidener") + + mixin { + //BetterInject is incompatible with TR remapping so we'll disable it for futureproofing + useLegacyMixinAp = true + } } base { diff --git a/gradle.properties b/gradle.properties index 98c6243a..0b51e7a4 100644 --- a/gradle.properties +++ b/gradle.properties @@ -31,7 +31,7 @@ repoparser_version = 1.4.0 # Other Libraries ## JGit (https://mvnrepository.com/artifact/org.eclipse.jgit/org.eclipse.jgit) -jgit_version = 6.7.0.202309050840-r +jgit_version = 6.8.0.202311291450-r ## Apache Commons Math (https://mvnrepository.com/artifact/org.apache.commons/commons-math3) commons_math_version = 3.6.1 |