libeufin

Integration and sandbox testing for FinTech APIs and data formats
Log | Files | Refs | Submodules | README | LICENSE

commit 7a1b39cee475b7e3aaeadeb3f49abf9b6d088fc0
parent 262b1eb173cdc1cd8484cee51dbca8ed93ee506f
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date:   Wed, 15 Apr 2020 15:49:42 +0200

invoke task from other task

Diffstat:
Mnexus/README | 2+-
Mnexus/build.gradle | 1+
2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/nexus/README b/nexus/README @@ -18,7 +18,7 @@ Installing the Nexus start script along the project files ========================================================= $ cd <top-level directory of this repository> -$ ./gradlew -q -Pprefix=<installation prefix> nexus:installDist +$ ./gradlew -q -Pprefix=<installation prefix> nexus:installToPrefix Documentation ============= diff --git a/nexus/build.gradle b/nexus/build.gradle @@ -15,6 +15,7 @@ plugins { } task installToPrefix(type: Copy) { + dependsOn(installShadowDist) from("build/install/nexus-shadow") { include("**/nexus") include("**/*.jar")