commit b9aa7c4da0e7fa6badb8fcba5bb72df49f6ece9e parent 69d1cc05e61a72cb483d67edc119164db4da255f Author: MS <ms@taler.net> Date: Tue, 12 Jan 2021 16:35:18 +0100 wrap dist in top-dir / include Sandbox / show version Diffstat:
| M | build.gradle | | | 12 | +++++++++++- |
1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/build.gradle b/build.gradle @@ -22,10 +22,15 @@ idea { } } +setVersion("0.0") + task dist(type: Zip) { evaluationDependsOn("nexus") + evaluationDependsOn("sandbox") + def topDir = "${getRootProject().name}-${getRootProject().version}" + archiveFileName = "${topDir}.zip" subprojects.each { - if (it.name == "nexus") { + if (it.name == "nexus" || it.name == "sandbox") { Task t = it.tasks.getByName("installShadowDist") dependsOn(t) } @@ -34,7 +39,12 @@ task dist(type: Zip) { include("**/libeufin-nexus") include("**/*.jar") } + from("sandbox/build/install/sandbox-shadow") { + include("**/libeufin-sandbox") + include("**/*.jar") + } from ("cli") { include("**/libeufin-cli") } + into(topDir) }