Skip to content

Commit

Permalink
Add MixinExtras dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRealWormbo committed May 1, 2024
1 parent ef96527 commit f505d79
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
4 changes: 3 additions & 1 deletion Fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,8 @@ dependencies {
modImplementation "net.fabricmc:fabric-loader:0.15.6"
modImplementation "net.fabricmc.fabric-api:fabric-api:0.92.1+1.20.1"

implementation(annotationProcessor("io.github.llamalad7:mixinextras-fabric:0.3.5"))

compileOnly project(":Xplat")

modImplementation "vazkii.patchouli:Patchouli:${minecraft_version}-84-FABRIC"
Expand Down Expand Up @@ -134,7 +136,7 @@ dependencies {

modCompileOnly 'teamreborn:energy:3.0.0'

// modCompileOnly 'com.blamejared.crafttweaker:CraftTweaker-fabric-1.18.2:9.1.123'
// modCompileOnly 'com.blamejared.crafttweaker:CraftTweaker-fabric-1.20.1:14.0.1'

modCompileOnly 'com.unascribed:ears-api:1.4.5'

Expand Down
6 changes: 5 additions & 1 deletion Forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,10 @@ dependencies {
minecraft "net.minecraftforge:forge:${minecraft_version}-47.1.3"
compileOnly project(":Xplat")
annotationProcessor 'org.spongepowered:mixin:0.8.5:processor'
compileOnly(annotationProcessor("io.github.llamalad7:mixinextras-common:0.3.5"))
implementation(jarJar("io.github.llamalad7:mixinextras-forge:0.3.5")) {
jarJar.ranged(it, "[0.3.5,)")
}

implementation fg.deobf("vazkii.patchouli:Patchouli:${minecraft_version}-84-FORGE")
compileOnly fg.deobf("mezz.jei:jei-1.20.1-common-api:15.2.0.27")
Expand All @@ -113,7 +117,7 @@ dependencies {
compileOnly fg.deobf("top.theillusivec4.curios:curios-forge:5.4.2+1.20.1:api")
runtimeOnly fg.deobf("top.theillusivec4.curios:curios-forge:5.4.2+1.20.1")

// compileOnly fg.deobf('com.blamejared.crafttweaker:CraftTweaker-forge-1.18.2:9.1.123')
// compileOnly fg.deobf('com.blamejared.crafttweaker:CraftTweaker-forge-1.20.1:14.0.1')

compileOnly fg.deobf('com.unascribed:ears-api:1.4.5')
}
Expand Down
6 changes: 2 additions & 4 deletions Xplat/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,20 +34,18 @@ repositories {

dependencies {
compileOnly group: 'org.spongepowered', name: 'mixin', version: '0.8.5'
compileOnly "io.github.llamalad7:mixinextras-common:0.3.5"
compileOnly "vazkii.patchouli:Patchouli-xplat:${minecraft_version}-84"

testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.6.1'

// compileOnly 'com.blamejared.crafttweaker:CraftTweaker-common-1.18.2:9.1.123'
// compileOnly 'com.blamejared.crafttweaker:CraftTweaker-common-1.20.1:14.0.1'

compileOnly "com.unascribed:ears-api:1.4.5"

compileOnly "mezz.jei:jei-1.20.1-common-api:15.2.0.27"
compileOnly "dev.emi:emi-xplat-mojmap:1.0.12+${minecraft_version}:api"

// annotationProcessor 'com.blamejared.crafttweaker:Crafttweaker_Annotation_Processors-1.18.2:2.0.0.123'
// annotationProcessor 'com.blamejared.crafttweaker:CraftTweaker-common-1.18.2:9.1.123'
}

test {
Expand Down

0 comments on commit f505d79

Please sign in to comment.