[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[libeufin] branch master updated: wrap dist in top-dir / include Sandbox
From: |
gnunet |
Subject: |
[libeufin] branch master updated: wrap dist in top-dir / include Sandbox / show version |
Date: |
Tue, 12 Jan 2021 16:36:26 +0100 |
This is an automated email from the git hooks/post-receive script.
ms pushed a commit to branch master
in repository libeufin.
The following commit(s) were added to refs/heads/master by this push:
new b9aa7c4 wrap dist in top-dir / include Sandbox / show version
b9aa7c4 is described below
commit b9aa7c4da0e7fa6badb8fcba5bb72df49f6ece9e
Author: MS <ms@taler.net>
AuthorDate: Tue Jan 12 16:35:18 2021 +0100
wrap dist in top-dir / include Sandbox / show version
---
build.gradle | 12 +++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/build.gradle b/build.gradle
index b5de80a..d174035 100644
--- 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)
}
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [libeufin] branch master updated: wrap dist in top-dir / include Sandbox / show version,
gnunet <=