Skip to content

Commit

Permalink
Sync mixin and asm versions between common and tweaker
Browse files Browse the repository at this point in the history
  • Loading branch information
ZacSharp committed Jul 21, 2024
1 parent edb433e commit a07d7d0
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 12 deletions.
8 changes: 3 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,9 @@ allprojects {
}

dependencies {
implementation "org.spongepowered:mixin:0.8.5"
implementation "org.ow2.asm:asm:9.3"
// The following line declares the yarn mappings you may select this one as well.
// mappings "net.fabricmc:yarn:1.17.1+build.32:v2"
//launchImplementation('dev.babbaj:nether-pathfinder:1.3.0')
compileOnly "org.spongepowered:mixin:${project.mixin_version}"
compileOnly "org.ow2.asm:asm:${project.asm_version}"

implementation "dev.babbaj:nether-pathfinder:${project.nether_pathfinder_version}"
}

Expand Down
7 changes: 6 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,9 @@ forge_version=45.0.43

fabric_version=0.14.11

nether_pathfinder_version=1.4.1
nether_pathfinder_version=1.4.1

// These dependencies are used for common and tweaker
// while mod loaders usually ship their own version
mixin_version=0.8.5
asm_version=9.3
12 changes: 6 additions & 6 deletions tweaker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ configurations {
}

dependencies {
implementation "org.spongepowered:mixin:0.8.5"
implementation "org.spongepowered:mixin:${project.mixin_version}"

// for some reason mixin isn't including these...
implementation "org.ow2.asm:asm:9.3"
implementation "org.ow2.asm:asm-tree:9.3"
implementation "org.ow2.asm:asm-commons:9.3"
implementation "org.ow2.asm:asm-util:9.3"
implementation "org.ow2.asm:asm-analysis:9.3"
implementation "org.ow2.asm:asm:${project.asm_version}"
implementation "org.ow2.asm:asm-tree:${project.asm_version}"
implementation "org.ow2.asm:asm-commons:${project.asm_version}"
implementation "org.ow2.asm:asm-util:${project.asm_version}"
implementation "org.ow2.asm:asm-analysis:${project.asm_version}"


implementation 'com.github.ImpactDevelopment:SimpleTweaker:1.2'
Expand Down

0 comments on commit a07d7d0

Please sign in to comment.