mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 03:31:15 +03:00
[ANY] Разобран завал со скриптами сборки.
This commit is contained in:
parent
6a590eb922
commit
94a00ccab8
7 changed files with 19 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
apply from: '../test_support.gradle'
|
||||
apply from: '../scripts/test_support.gradle'
|
||||
|
||||
dependencies {
|
||||
compile project(':LaunchServer')
|
||||
|
|
2
modules
2
modules
|
@ -1 +1 @@
|
|||
Subproject commit 532937377fd774aeb49faaf61e50dbe20f2093e5
|
||||
Subproject commit 87fe3184197497065962f3013b1c0f4d1fe0b5e3
|
8
scripts/launch_module.gradle
Normal file
8
scripts/launch_module.gradle
Normal file
|
@ -0,0 +1,8 @@
|
|||
dependencies {
|
||||
compileOnly project(':Launcher')
|
||||
}
|
||||
|
||||
jar {
|
||||
from { configurations.runtime.collect { it.isDirectory() ? it : zipTree(it) } }
|
||||
}
|
||||
|
8
scripts/srvwrap_module.gradle
Normal file
8
scripts/srvwrap_module.gradle
Normal file
|
@ -0,0 +1,8 @@
|
|||
dependencies {
|
||||
compileOnly project(':ServerWrapper')
|
||||
}
|
||||
|
||||
jar {
|
||||
from { configurations.runtime.collect { it.isDirectory() ? it : zipTree(it) } }
|
||||
}
|
||||
|
|
@ -10,5 +10,5 @@
|
|||
include 'LauncherTest'
|
||||
include 'modules'
|
||||
file('modules').eachDir { sub ->
|
||||
if (sub.name.endsWith('_module')) include 'modules:' + sub.name
|
||||
if (sub.name.endsWith('_module') || sub.name.endsWith('_swmodule') || sub.name.endsWith('_lmodule')) include 'modules:' + sub.name
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue