mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-23 21:38:00 +01:00
Fix gradle
This commit is contained in:
parent
4d1904e955
commit
f58a0598fd
1 changed files with 2 additions and 1 deletions
|
@ -43,13 +43,13 @@ targetCompatibility = 1.8
|
||||||
sourceSets {
|
sourceSets {
|
||||||
jei {
|
jei {
|
||||||
compileClasspath += main.compileClasspath
|
compileClasspath += main.compileClasspath
|
||||||
|
compileClasspath += main.output
|
||||||
}
|
}
|
||||||
external {
|
external {
|
||||||
compileClasspath += main.compileClasspath
|
compileClasspath += main.compileClasspath
|
||||||
}
|
}
|
||||||
main {
|
main {
|
||||||
compileClasspath += external.output
|
compileClasspath += external.output
|
||||||
compileClasspath += jei.output
|
|
||||||
ext.refMap = project.refCore
|
ext.refMap = project.refCore
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -101,5 +101,6 @@ processResources {
|
||||||
jar {
|
jar {
|
||||||
from sourceSets.main.output
|
from sourceSets.main.output
|
||||||
from sourceSets.external.output
|
from sourceSets.external.output
|
||||||
|
from sourceSets.jei.output
|
||||||
baseName = "Unicopia-mc${project.mcVersion}"
|
baseName = "Unicopia-mc${project.mcVersion}"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue