mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 03:31:15 +03:00
[FIX] Фиксы сборки ч. 2.
This commit is contained in:
parent
1131f56e57
commit
233e28a08a
3 changed files with 4 additions and 5 deletions
|
@ -169,8 +169,8 @@ task dumpCompileOnlyLibs(type: Copy) {
|
|||
task bundle(type: Zip) {
|
||||
duplicatesStrategy = 'EXCLUDE'
|
||||
dependsOn parent.childProjects.Launcher.tasks.build, tasks.dumpLibs, tasks.dumpCompileOnlyLibs, tasks.jar
|
||||
archiveName 'LaunchServer.zip'
|
||||
destinationDir file("$buildDir")
|
||||
archiveFileName = 'LaunchServer.zip'
|
||||
destinationDirectory = file("$buildDir")
|
||||
from(tasks.dumpLibs.destinationDir) { into 'libraries' }
|
||||
from(tasks.dumpCompileOnlyLibs.destinationDir) { into 'launcher-libraries-compile' }
|
||||
from tasks.jar.archivePath
|
||||
|
|
|
@ -60,8 +60,8 @@ pack project(':LauncherAPI')
|
|||
|
||||
task genRuntimeJS(type: Zip) {
|
||||
duplicatesStrategy = 'EXCLUDE'
|
||||
archiveName = "runtime.zip"
|
||||
destinationDir = file("${buildDir}/tmp")
|
||||
archiveFileName = "runtime.zip"
|
||||
destinationDirectory = file("${buildDir}/tmp")
|
||||
from "runtime/"
|
||||
}
|
||||
|
||||
|
|
|
@ -30,7 +30,6 @@
|
|||
|
||||
eclipse {
|
||||
classpath {
|
||||
plusConfigurations += [ configurations.compileOnly ]
|
||||
downloadSources = true
|
||||
downloadJavadoc = true
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue