mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-01-09 09:09:46 +03:00
8 lines
148 B
Groovy
8 lines
148 B
Groovy
|
dependencies {
|
||
|
compileOnly project(':LaunchServer')
|
||
|
}
|
||
|
jar {
|
||
|
from { configurations.runtime.collect { it.isDirectory() ? it : zipTree(it) } }
|
||
|
}
|
||
|
|