Don't include extra copies of the Fabric API
This commit is contained in:
parent
7170c3482b
commit
fab5dcdc35
|
@ -45,8 +45,12 @@ dependencies {
|
|||
runtimeOnly project(":plugin:rei")
|
||||
include project(":plugin:rei")
|
||||
|
||||
modRuntime "io.github.cottonmc:cotton-resources:${project.cotton_resources_version}"
|
||||
modRuntime "com.terraformersmc:modmenu:${project.modmenu_version}"
|
||||
modRuntime("io.github.cottonmc:cotton-resources:${project.cotton_resources_version}") {
|
||||
exclude group: "net.fabricmc.fabric-api"
|
||||
}
|
||||
modRuntime("com.terraformersmc:modmenu:${project.modmenu_version}") {
|
||||
exclude group: "net.fabricmc.fabric-api"
|
||||
}
|
||||
|
||||
testImplementation "org.junit.jupiter:junit-jupiter:${project.junit_version}"
|
||||
}
|
||||
|
|
|
@ -33,8 +33,12 @@ dependencies {
|
|||
|
||||
implementation project(":")
|
||||
|
||||
modCompileOnly "me.shedaniel:RoughlyEnoughItems-api:${project.rei_version}"
|
||||
modRuntime "me.shedaniel:RoughlyEnoughItems:${project.rei_version}"
|
||||
modCompileOnly("me.shedaniel:RoughlyEnoughItems-api:${project.rei_version}") {
|
||||
exclude group: "net.fabricmc.fabric-api"
|
||||
}
|
||||
modRuntime("me.shedaniel:RoughlyEnoughItems:${project.rei_version}") {
|
||||
exclude group: "net.fabricmc.fabric-api"
|
||||
}
|
||||
}
|
||||
|
||||
processResources {
|
||||
|
|
Loading…
Reference in New Issue