File tree Expand file tree Collapse file tree 3 files changed +15
-12
lines changed Expand file tree Collapse file tree 3 files changed +15
-12
lines changed Original file line number Diff line number Diff line change @@ -78,11 +78,9 @@ allprojects {
78
78
}
79
79
80
80
dependencies {
81
- implementation " org.spongepowered:mixin:0.8.5"
82
- implementation " org.ow2.asm:asm:9.3"
83
- // The following line declares the yarn mappings you may select this one as well.
84
- // mappings "net.fabricmc:yarn:1.17.1+build.32:v2"
85
- // launchImplementation('dev.babbaj:nether-pathfinder:1.3.0')
81
+ compileOnly " org.spongepowered:mixin:${ project.mixin_version} "
82
+ compileOnly " org.ow2.asm:asm:${ project.asm_version} "
83
+
86
84
implementation " dev.babbaj:nether-pathfinder:${ project.nether_pathfinder_version} "
87
85
}
88
86
Original file line number Diff line number Diff line change @@ -12,4 +12,9 @@ forge_version=45.0.43
12
12
13
13
fabric_version =0.14.11
14
14
15
- nether_pathfinder_version =1.4.1
15
+ nether_pathfinder_version =1.4.1
16
+
17
+ // These dependencies are used for common and tweaker
18
+ // while mod loaders usually ship their own version
19
+ mixin_version =0.8.5
20
+ asm_version =9.3
Original file line number Diff line number Diff line change @@ -38,14 +38,14 @@ configurations {
38
38
}
39
39
40
40
dependencies {
41
- implementation " org.spongepowered:mixin:0.8.5 "
41
+ implementation " org.spongepowered:mixin:${ project.mixin_version } "
42
42
43
43
// for some reason mixin isn't including these...
44
- implementation " org.ow2.asm:asm:9.3 "
45
- implementation " org.ow2.asm:asm-tree:9.3 "
46
- implementation " org.ow2.asm:asm-commons:9.3 "
47
- implementation " org.ow2.asm:asm-util:9.3 "
48
- implementation " org.ow2.asm:asm-analysis:9.3 "
44
+ implementation " org.ow2.asm:asm:${ project.asm_version } "
45
+ implementation " org.ow2.asm:asm-tree:${ project.asm_version } "
46
+ implementation " org.ow2.asm:asm-commons:${ project.asm_version } "
47
+ implementation " org.ow2.asm:asm-util:${ project.asm_version } "
48
+ implementation " org.ow2.asm:asm-analysis:${ project.asm_version } "
49
49
50
50
51
51
implementation ' com.github.ImpactDevelopment:SimpleTweaker:1.2'
You can’t perform that action at this time.
0 commit comments