libeufin

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

commit e86798ed6bdaa0817dd0057f090488e3fc28f36d
parent fc6771ba0d197a0b77a48077942190354dffd771
Author: Christian Grothoff <christian@grothoff.org>
Date:   Sun, 29 Oct 2023 12:53:40 +0100

-fix some gradle deprecation warnings

Diffstat:
Mbank/build.gradle | 7+++++--
Mnexus/build.gradle | 7+++++--
Mutil/build.gradle | 6++++--
3 files changed, 14 insertions(+), 6 deletions(-)

diff --git a/bank/build.gradle b/bank/build.gradle @@ -7,8 +7,11 @@ plugins { id 'org.jetbrains.kotlin.plugin.serialization' version '1.9.10' } -sourceCompatibility = "11" -targetCompatibility = "11" +java { + sourceCompatibility = JavaVersion.VERSION_11 + targetCompatibility = JavaVersion.VERSION_11 +} + version = rootProject.version compileKotlin { diff --git a/nexus/build.gradle b/nexus/build.gradle @@ -22,8 +22,11 @@ task installToPrefix(type: Copy) { apply plugin: 'kotlin-kapt' -sourceCompatibility = '11' -targetCompatibility = '11' +java { + sourceCompatibility = JavaVersion.VERSION_11 + targetCompatibility = JavaVersion.VERSION_11 +} + version = rootProject.version compileKotlin { diff --git a/util/build.gradle b/util/build.gradle @@ -4,8 +4,10 @@ plugins { id 'org.jetbrains.kotlin.jvm' } -sourceCompatibility = "11" -targetCompatibility = "11" +java { + sourceCompatibility = JavaVersion.VERSION_11 + targetCompatibility = JavaVersion.VERSION_11 +} version = rootProject.version