diff options
author | Kevinthegreat <92656833+kevinthegreat1@users.noreply.github.com> | 2023-07-27 10:59:57 +0800 |
---|---|---|
committer | Kevinthegreat <92656833+kevinthegreat1@users.noreply.github.com> | 2023-07-30 12:21:40 +0800 |
commit | 810d7f73da29189bf0b0ec813812e69a21ad085b (patch) | |
tree | 6d75119be36171c39f20fb6fab72fe6aade91cb1 | |
parent | 7f74f75944500941e69a72e47b71cc597d6ebc28 (diff) | |
download | Skyblocker-810d7f73da29189bf0b0ec813812e69a21ad085b.tar.gz Skyblocker-810d7f73da29189bf0b0ec813812e69a21ad085b.tar.bz2 Skyblocker-810d7f73da29189bf0b0ec813812e69a21ad085b.zip |
Refactor build files
-rw-r--r-- | build.gradle | 6 | ||||
-rw-r--r-- | gradle.properties | 5 |
2 files changed, 5 insertions, 6 deletions
diff --git a/build.gradle b/build.gradle index 3d375d68..b765d962 100644 --- a/build.gradle +++ b/build.gradle @@ -66,14 +66,14 @@ dependencies { // Mixin Extras (https://github.com/LlamaLad7/MixinExtras) include implementation(annotationProcessor("com.github.llamalad7.mixinextras:mixinextras-fabric:${project.mixin_extras_version}")) + // BetterInject (https://github.com/caoimhebyrne/BetterInject) + include implementation(annotationProcessor("com.github.cbyrneee:BetterInject:${project.betterinject_version}")) + // https://mvnrepository.com/artifact/org.eclipse.jgit/org.eclipse.jgit used pull data from the NEU item repo include implementation("org.eclipse.jgit:org.eclipse.jgit:6.4.0.202211300538-r") // Occlusion Culling (https://github.com/LogisticsCraft/OcclusionCulling) include implementation("com.logisticscraft:occlusionculling:${project.occlusionculling_version}") - - // BetterInject (https://github.com/caoimhebyrne/BetterInject) - include implementation(annotationProcessor("com.github.cbyrneee:BetterInject:${project.betterinject_version}")) } base { diff --git a/gradle.properties b/gradle.properties index 06c16d22..6ae74df8 100644 --- a/gradle.properties +++ b/gradle.properties @@ -22,11 +22,10 @@ renderer_version = master-SNAPSHOT ## Mixin Extras (https://github.com/LlamaLad7/MixinExtras) mixin_extras_version=0.2.0-beta.9 -## Occlusion Culling (https://github.com/LogisticsCraft/OcclusionCulling) -occlusionculling_version = 0.0.7-SNAPSHOT - ## Better Inject (https://github.com/caoimhebyrne/BetterInject) betterinject_version=0.1.3 +## Occlusion Culling (https://github.com/LogisticsCraft/OcclusionCulling) +occlusionculling_version = 0.0.7-SNAPSHOT # Mod Properties mod_version = 1.11.0 |