Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
FalsePattern committed Sep 17, 2022
1 parent cc764ad commit 3c15ef7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ GasStation is library that gives mods the ability of loading mixins without embe
library inside themselves.

This library is based on SpongeMixins, but with several significant differences:
- This library provides Mixin 0.8.3 instead of 0.7.11 (new mixin features that are not available in mixin 0.7)
- This library provides Mixin 0.8.5 instead of 0.7.11 (new mixin features that are not available in mixin 0.7)
- MixinExtras is included, which has some neat QoL utilities that can be used by mod developers.
- The early/late mixin loading feature from mixin-booter-legacy is included as a part of the library
- Mixingasm is included
Expand Down
8 changes: 3 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -303,15 +303,13 @@ dependencies {
annotationProcessor("com.google.guava:guava:24.1.1-jre")
annotationProcessor("com.google.code.gson:gson:2.8.6")
annotationProcessor("com.llamalad7:MixinExtras:0.0.12-gasstation")
annotationProcessor("org.spongepowered:mixin:0.8.3-gasstation")
annotationProcessor("org.spongepowered:mixin:0.8.5-gasstation")
//They are shaded in
//compile("org.spongepowered:mixin:0.8.3-gasstation")
//compile("org.spongepowered:mixin:0.8.5-gasstation")
//compile("com.llamalad7:MixinExtras:0.0.12-gasstation")
//compile("com.falsepattern:gasstation-mc1.7.10:0.1.0:dev")
} else if(hasMixinDeps.toBoolean()) {
//runtime("org.spongepowered:mixin:0.8.3-gasstation")
//runtime("org.spongepowered:mixin:0.8.5-gasstation")
//runtime("com.llamalad7:MixinExtras:0.0.12-gasstation")
//runtime("com.falsepattern:gasstation-mc1.7.10:0.1.0:dev")
}
}

Expand Down
2 changes: 1 addition & 1 deletion dependencies.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Add your dependencies here

dependencies {
shadeCompile("org.spongepowered:mixin:0.8.3-gasstation")
shadeCompile("org.spongepowered:mixin:0.8.5-gasstation")
shadeCompile("com.llamalad7:MixinExtras:0.0.12-gasstation")
}

0 comments on commit 3c15ef7

Please sign in to comment.