diff options
author | Aaron <51387595+AzureAaron@users.noreply.github.com> | 2024-01-09 13:03:04 -0500 |
---|---|---|
committer | Aaron <51387595+AzureAaron@users.noreply.github.com> | 2024-01-10 17:26:42 -0500 |
commit | e1346db932e8915890cbcf844e3dd06759b0ed8a (patch) | |
tree | 554d4765c5989dc5a928fc59f721c2282f25e270 | |
parent | de96684315a10bd224069c253bbefa408659dc3c (diff) | |
download | Skyblocker-e1346db932e8915890cbcf844e3dd06759b0ed8a.tar.gz Skyblocker-e1346db932e8915890cbcf844e3dd06759b0ed8a.tar.bz2 Skyblocker-e1346db932e8915890cbcf844e3dd06759b0ed8a.zip |
Loom 1.5 & JGit 6.8.0
-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 |