aboutsummaryrefslogtreecommitdiff
path: root/nexus/build.gradle
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2023-10-29 12:53:40 +0100
committerChristian Grothoff <christian@grothoff.org>2023-10-29 12:53:45 +0100
commite86798ed6bdaa0817dd0057f090488e3fc28f36d (patch)
tree589e9db66eaec4d6460ad284d04bbf84bcf54ab2 /nexus/build.gradle
parentfc6771ba0d197a0b77a48077942190354dffd771 (diff)
downloadlibeufin-e86798ed6bdaa0817dd0057f090488e3fc28f36d.tar.gz
libeufin-e86798ed6bdaa0817dd0057f090488e3fc28f36d.tar.bz2
libeufin-e86798ed6bdaa0817dd0057f090488e3fc28f36d.zip
-fix some gradle deprecation warnings
Diffstat (limited to 'nexus/build.gradle')
-rw-r--r--nexus/build.gradle7
1 files changed, 5 insertions, 2 deletions
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 {