gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[libeufin] branch master updated: -fix some gradle deprecation warnings


From: gnunet
Subject: [libeufin] branch master updated: -fix some gradle deprecation warnings
Date: Sun, 29 Oct 2023 12:53:48 +0100

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository libeufin.

The following commit(s) were added to refs/heads/master by this push:
     new e86798ed -fix some gradle deprecation warnings
e86798ed is described below

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

    -fix some gradle deprecation warnings
---
 bank/build.gradle  | 7 +++++--
 nexus/build.gradle | 7 +++++--
 util/build.gradle  | 6 ++++--
 3 files changed, 14 insertions(+), 6 deletions(-)

diff --git a/bank/build.gradle b/bank/build.gradle
index d7fdbe24..9c808daf 100644
--- 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
index 8a6ea2f3..96aec818 100644
--- 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
index 38a8ab61..75a432c1 100644
--- 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
 

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]