libeufin

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

commit 12afd0f86be5c4c028107eb3633cc462c1c63544
parent 6e2ee7ff28ac6894e6d9acbea0ce77521b3c1b01
Author: MS <ms@taler.net>
Date:   Fri, 15 Sep 2023 12:52:11 +0200

Excluding Nexus from compilation.

It has obsolete code and would create compilation
problems while Util is being changed.  It'll be reactivated
once the bank finishes the current refactoring.

Diffstat:
Mbuild.gradle | 10+++++-----
Msettings.gradle | 2+-
2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/build.gradle b/build.gradle @@ -62,7 +62,7 @@ classes { task execArch(type: Zip) { dependsOn versionFile dependsOn replaceVersionCli - evaluationDependsOn("nexus") + // evaluationDependsOn("nexus") evaluationDependsOn("bank") def topDir = "${getRootProject().name}-${getRootProject().version}" archiveFileName = "${topDir}.zip" @@ -72,10 +72,10 @@ task execArch(type: Zip) { dependsOn(t) // invokes the task 't' } } - from("nexus/build/install/nexus-shadow") { - include("**/libeufin-nexus") - include("**/*.jar") - } + //from("nexus/build/install/nexus-shadow") { + // include("**/libeufin-nexus") + // include("**/*.jar") + //} from("bank/build/install/bank-shadow") { include("**/libeufin-bank") include("**/*.jar") diff --git a/settings.gradle b/settings.gradle @@ -1,4 +1,4 @@ rootProject.name = 'libeufin' include("bank") -include("nexus") +// include("nexus") include("util")