commit c6357f8de828ceac6763881d11462d5b50049999 parent ef52e4347677b5e5a87b548744614c33004e8fd1 Author: MS <ms@taler.net> Date: Sun, 20 Dec 2020 00:50:04 +0100 Collecting the "dist" files from parent-project. Note: no zipping is happening yet. Diffstat:
| M | build.gradle | | | 11 | ++++++++++- |
| R | cli/libeufin-cli -> cli/bin/libeufin-cli | | | 0 |
2 files changed, 10 insertions(+), 1 deletion(-)
diff --git a/build.gradle b/build.gradle @@ -16,7 +16,7 @@ idea { } } -task dist { +task dist(type: Copy) { evaluationDependsOn("nexus") subprojects.each { if (it.name == "nexus") { @@ -24,4 +24,13 @@ task dist { dependsOn(t) } } + from("nexus/build/install/nexus-shadow") { + include("**/libeufin-nexus") + include("**/*.jar") + } + from ("cli") { + include("**/libeufin-cli") + } + + into "/tmp/second/try" } \ No newline at end of file diff --git a/cli/libeufin-cli b/cli/bin/libeufin-cli