libeufin

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

commit d61420e72a6e6bc5ea583d9f9d6a2e6349496db3
parent 0b403bb2647190a011842d9b22da8d41e6c71d18
Author: Florian Dold <florian@dold.me>
Date:   Fri, 22 Jan 2021 17:41:30 +0100

version bump

Diffstat:
Mbuild.gradle | 2+-
Mnexus/build.gradle | 1-
Msandbox/build.gradle | 5++---
Mutil/build.gradle | 3++-
4 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/build.gradle b/build.gradle @@ -24,7 +24,7 @@ idea { } } -setVersion("0.0.1-dev.1") +setVersion("0.0.1-dev.2") task versionFile() { new File("${projectDir}/util/src/main/resources", "version.txt").text = getRootProject().version diff --git a/nexus/build.gradle b/nexus/build.gradle @@ -37,7 +37,6 @@ apply plugin: 'kotlin-kapt' sourceCompatibility = '11' targetCompatibility = '11' -version = '0.0.1' compileKotlin { kotlinOptions { diff --git a/sandbox/build.gradle b/sandbox/build.gradle @@ -7,7 +7,7 @@ plugins { sourceCompatibility = "11" targetCompatibility = "11" -version '1.0-snapshot' +version = rootProject.version compileKotlin { kotlinOptions { @@ -84,4 +84,4 @@ jar { manifest { attributes "Main-Class": "tech.libeufin.sandbox.MainKt" } -} -\ No newline at end of file +} diff --git a/util/build.gradle b/util/build.gradle @@ -7,7 +7,8 @@ plugins { sourceCompatibility = "11" targetCompatibility = "11" -version '1.0-snapshot' + +version = rootProject.version compileKotlin {