From f58a0598fd19fd8af9f7d4a49c6c456741d37fa8 Mon Sep 17 00:00:00 2001 From: Sollace Date: Sat, 9 Mar 2019 20:02:27 +0200 Subject: [PATCH] Fix gradle --- build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index b5f954fd..3a1a350f 100644 --- a/build.gradle +++ b/build.gradle @@ -43,13 +43,13 @@ targetCompatibility = 1.8 sourceSets { jei { compileClasspath += main.compileClasspath + compileClasspath += main.output } external { compileClasspath += main.compileClasspath } main { compileClasspath += external.output - compileClasspath += jei.output ext.refMap = project.refCore } } @@ -101,5 +101,6 @@ processResources { jar { from sourceSets.main.output from sourceSets.external.output + from sourceSets.jei.output baseName = "Unicopia-mc${project.mcVersion}" }