Created
July 13, 2020 18:03
-
-
Save tychobrailleur/e05b38a462639f4872f6e07f7d2149c2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/build.gradle b/build.gradle | |
index ce4ed682..2afa9261 100644 | |
--- a/build.gradle | |
+++ b/build.gradle | |
@@ -169,6 +169,9 @@ ospackage { | |
from(jar.outputs.files) { | |
into 'lib\\ho' | |
} | |
+ from(configurations.runtime) { | |
+ into 'lib\\ho' | |
+ } | |
from("${projectDir}\\src\\main\\resources\\sprache") { | |
into 'lib\\ho\\sprache' | |
} | |
@@ -183,11 +186,6 @@ ospackage { | |
into 'lib\\ho\\themes' | |
} | |
- from("${projectDir}\\src\\main\\resources") { | |
- include "**/*.jar" | |
- into "lib\\ho" | |
- } | |
- | |
from("${projectDir}\\src\\main\\resources") { | |
if (development_stage == '0') { | |
include "ho_logo_dev.png" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment