mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 11:39:11 +03:00
10 lines
266 B
Groovy
10 lines
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) } }
|
||
|
}
|
||
|
}
|