gnunet-svn
[Top][All Lists]
Advanced

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

[libeufin] branch master updated: sandbox installer


From: gnunet
Subject: [libeufin] branch master updated: sandbox installer
Date: Tue, 02 Jun 2020 13:02:55 +0200

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 d5c4935  sandbox installer
d5c4935 is described below

commit d5c493531fb0f9e1f8f2c23a356e3243e26410d4
Author: MS <ms@taler.net>
AuthorDate: Tue Jun 2 13:02:44 2020 +0200

    sandbox installer
---
 sandbox/build.gradle | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/sandbox/build.gradle b/sandbox/build.gradle
index bafbe7d..ae550cb 100644
--- a/sandbox/build.gradle
+++ b/sandbox/build.gradle
@@ -2,6 +2,7 @@ plugins {
     id 'java'
     id 'org.jetbrains.kotlin.jvm'
     id 'application'
+    id "com.github.johnrengelman.shadow" version "5.2.0"
 }
 
 sourceCompatibility = "11"
@@ -14,6 +15,21 @@ compileKotlin {
     }
 }
 
+task installToPrefix(type: Copy) {
+    dependsOn(installShadowDist)
+    from("build/install/sandbox-shadow") {
+        include("**/sandbox")
+        include("**/*.jar")
+    }
+    /**
+     * Reads from command line -Pkey=value options,
+     * with a default (/tmp) if the key is not found.
+     *
+     * project.findProperty('prefix') ?: '/tmp'
+     */
+    into "${project.findProperty('prefix') ?: '/tmp'}"
+}
+
 compileTestKotlin {
     kotlinOptions {
         jvmTarget = "11"

-- 
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]