commit 7cf6f22040285b883a92637c2687ac7bece05815
parent ff3a7ff5df6249165ddb6792c75bc4998b37e7b9
Author: Christian Grothoff <grothoff@gnunet.org>
Date: Thu, 7 Sep 2023 15:32:38 +0200
sandbox->bank
Diffstat:
2 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/README b/README
@@ -19,7 +19,7 @@ $ make install
If the previous step succeeded, libeufin-nexus and a command line
client (libeufin-cli) should be found under $PFX/bin. Additionally,
-the libeufin-sandbox command used for testing should be found under
+the libeufin-bank command used for testing should be found under
$PFX/bin as well.
Running tests
@@ -54,7 +54,7 @@ The TGZ file should be found at: build/distributions/libeufin-$VERSION-sources.t
Exporting an archive with the three executables
===============================================
-Such archive contains the compiled Sandbox and Nexus,
+Such archive contains the compiled Bank and Nexus,
and the CLI script.
$ ./bootstrap # Needed to silence 'GNU make'
@@ -76,8 +76,8 @@ This repository does not ship any UI, rather it downloads
one from the following project along the "make deb" target:
https://git.taler.net/wallet-core.git/tree/packages/demobank-ui
-This way, the libeufin-sandbox Debian package provides one
-self-contained solution including Nginx, LibEuFin Sandbox,
+This way, the libeufin-bank Debian package provides one
+self-contained solution including Nginx, LibEuFin Bank,
and the UI.
Note: the UI an independent Web app that could even be served
diff --git a/build.gradle b/build.gradle
@@ -63,11 +63,11 @@ task execArch(type: Zip) {
dependsOn versionFile
dependsOn replaceVersionCli
evaluationDependsOn("nexus")
- evaluationDependsOn("sandbox")
+ evaluationDependsOn("bank")
def topDir = "${getRootProject().name}-${getRootProject().version}"
archiveFileName = "${topDir}.zip"
subprojects.each {
- if (it.name == "nexus" || it.name == "sandbox") {
+ if (it.name == "nexus" || it.name == "bank") {
Task t = it.tasks.getByName("installShadowDist")
dependsOn(t) // invokes the task 't'
}
@@ -76,8 +76,8 @@ task execArch(type: Zip) {
include("**/libeufin-nexus")
include("**/*.jar")
}
- from("sandbox/build/install/sandbox-shadow") {
- include("**/libeufin-sandbox")
+ from("bank/build/install/bank-shadow") {
+ include("**/libeufin-bank")
include("**/*.jar")
}
from("${project.buildDir}/generated/python") {