gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[libeufin] branch master updated (10bd6dc -> e652ead)


From: gnunet
Subject: [libeufin] branch master updated (10bd6dc -> e652ead)
Date: Sun, 20 Dec 2020 01:24:21 +0100

This is an automated email from the git hooks/post-receive script.

ms pushed a change to branch master
in repository libeufin.

    from 10bd6dc  Fix tasks submission by CLI.
     new ef52e43  Get parent-project build Nexus fat JAR.
     new c6357f8  Collecting the "dist" files from parent-project.
     new 9329582  Makefile: 'dist' target
     new e652ead  set archive name

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 Makefile                   |  5 +++++
 build.gradle               | 18 ++++++++++++++++++
 cli/{ => bin}/libeufin-cli |  0
 3 files changed, 23 insertions(+)
 rename cli/{ => bin}/libeufin-cli (100%)

diff --git a/Makefile b/Makefile
index 2ada6eb..3e44430 100644
--- a/Makefile
+++ b/Makefile
@@ -5,6 +5,11 @@ escaped_pwd = $(shell pwd | sed 's/\//\\\//g')
 install: install-nexus install-cli
 install-dev: install-nexus-dev install-sandbox-dev install-cli
 
+.PHONY: dist
+dist:
+       @echo Creating the 'dist' Zip archive.
+       @./gradlew -q dist
+
 .PHONY: install-sandbox
 install-sandbox:
        @echo Installing Sandbox.
diff --git a/build.gradle b/build.gradle
index 992a300..a28308d 100644
--- a/build.gradle
+++ b/build.gradle
@@ -14,4 +14,22 @@ idea {
     module {
         excludeDirs += file("frontend")
     }
+}
+
+task dist(type: Zip) {
+    evaluationDependsOn("nexus")
+    subprojects.each {
+        if (it.name == "nexus") {
+            Task t = it.tasks.getByName("installShadowDist")
+            dependsOn(t)
+        }
+    }
+    from("nexus/build/install/nexus-shadow") {
+        include("**/libeufin-nexus")
+        include("**/*.jar")
+    }
+    from ("cli") {
+        include("**/libeufin-cli")
+    }
+    archiveFileName = "libeufin-0.0.zip"
 }
\ No newline at end of file
diff --git a/cli/libeufin-cli b/cli/bin/libeufin-cli
similarity index 100%
rename from cli/libeufin-cli
rename to cli/bin/libeufin-cli

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]