mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-23 13:37:58 +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 {
|
||||
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}"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue