specify fabric mixin in fabric-quilt shared code

This commit is contained in:
dfsek 2022-07-05 01:20:50 -07:00
parent 5da26e2b53
commit 892ba38fec
2 changed files with 1 additions and 2 deletions

View File

@ -15,8 +15,6 @@ loom {
dependencies {
shadedApi(project(":common:implementation:base"))
compileOnly("net.fabricmc:sponge-mixin:${Versions.Fabric.mixin}")
modImplementation("net.fabricmc:fabric-loader:${Versions.Mod.fabricLoader}")
minecraft("com.mojang:minecraft:${Versions.Mod.minecraft}")

View File

@ -16,6 +16,7 @@ dependencies {
shadedApi(project(":common:implementation:base"))
modImplementation("net.fabricmc:fabric-loader:${Versions.Mod.fabricLoader}")
compileOnly("net.fabricmc:sponge-mixin:${Versions.Fabric.mixin}")
compileOnly(project(path = ":platforms:mixin-common", configuration = "namedElements")) { isTransitive = false }