From 62af331966d84239c806ac4768c308fc892e3b25 Mon Sep 17 00:00:00 2001 From: zaxar163 Date: Fri, 15 Mar 2019 17:34:49 +0300 Subject: [PATCH] [FIX] Gradle scripts. --- LaunchServer/build.gradle | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/LaunchServer/build.gradle b/LaunchServer/build.gradle index 31439382..0d419c1a 100644 --- a/LaunchServer/build.gradle +++ b/LaunchServer/build.gradle @@ -121,12 +121,13 @@ task dumpCompileOnlyLibs(type: Copy) { } task bundle(type: Zip) { - dependsOn parent.childProjects.Launcher.tasks.build, tasks.dumpLibs, tasks.jar + dependsOn parent.childProjects.Launcher.tasks.build, tasks.dumpLibs, tasks.dumpCompileOnlyLibs, tasks.jar archiveName 'LaunchServer.zip' destinationDir file("$buildDir") from(tasks.dumpLibs.destinationDir) { into 'libraries' } + from(tasks.dumpCompileOnlyLibs.destinationDir) { into 'launcher-libraries-compile' } from tasks.jar.archivePath from(parent.childProjects.Launcher.tasks.dumpLibs) { into 'launcher-libraries' } } -build.dependsOn tasks.dumpLibs, tasks.bundle +build.dependsOn tasks.dumpLibs, tasks.dumpCompileOnlyLibs, tasks.bundle