summaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorMS <ms@taler.net>2020-12-20 00:50:04 +0100
committerMS <ms@taler.net>2020-12-20 00:50:04 +0100
commitc6357f8de828ceac6763881d11462d5b50049999 (patch)
tree44d1d82ed9873cbc0ae5d46b9a722e25159e3efe /build.gradle
parentef52e4347677b5e5a87b548744614c33004e8fd1 (diff)
downloadlibeufin-c6357f8de828ceac6763881d11462d5b50049999.tar.gz
libeufin-c6357f8de828ceac6763881d11462d5b50049999.tar.bz2
libeufin-c6357f8de828ceac6763881d11462d5b50049999.zip
Collecting the "dist" files from parent-project.
Note: no zipping is happening yet.
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle11
1 files changed, 10 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle
index 62064d97..4d5df7f6 100644
--- 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