Fix JEI transitive dep

This commit is contained in:
raoulvdberge
2020-10-03 13:02:41 +02:00
parent cece473cfb
commit 41a1ce68a8

View File

@@ -16,10 +16,6 @@ repositories {
maven { maven {
url "https://minecraft.curseforge.com/api/maven/" url "https://minecraft.curseforge.com/api/maven/"
} }
// TODO temporary for JEI - https://github.com/mezz/JustEnoughItems/issues/2095
maven {
url 'https://maven.latmod.com/'
}
} }
apply plugin: 'net.minecraftforge.gradle' apply plugin: 'net.minecraftforge.gradle'
@@ -104,15 +100,12 @@ processResources {
dependencies { dependencies {
minecraft 'net.minecraftforge:forge:1.16.3-34.1.0' minecraft 'net.minecraftforge:forge:1.16.3-34.1.0'
compileOnly fg.deobf("mezz.jei:jei-1.16.3:7.3.2.34:api") compileOnly fg.deobf("mezz.jei:jei-1.16.3:7.3.2.36:api")
runtimeOnly fg.deobf("mezz.jei:jei-1.16.3:7.3.2.34") runtimeOnly fg.deobf("mezz.jei:jei-1.16.3:7.3.2.36")
compileOnly 'mouse-tweaks:MouseTweaks:2.13:mc1.16.2' compileOnly 'mouse-tweaks:MouseTweaks:2.13:mc1.16.2'
runtimeOnly fg.deobf('crafting-tweaks:CraftingTweaks_1.16.2:12.1.0') runtimeOnly fg.deobf('crafting-tweaks:CraftingTweaks_1.16.2:12.1.0')
// TODO temporary for JEI - https://github.com/mezz/JustEnoughItems/issues/2095
compile fg.deobf('com.feed_the_beast.mods:ftb-gui-library:1.0.0.18')
} }
jar { jar {