Launcher/modules/build.gradle
2018-09-17 14:07:32 +07:00

10 lines
No EOL
266 B
Groovy

subprojects {
dependencies {
compileOnly project(':LaunchServer')
compileOnly 'org.javassist:javassist:3.23.1-GA'
compileOnly 'org.ow2.asm:asm-debug-all:5.0.4'
}
jar {
from { configurations.runtime.collect { it.isDirectory() ? it : zipTree(it) } }
}
}