From 68fb1163a37c2465224a3e396034476b1ee5cdce Mon Sep 17 00:00:00 2001 From: Christoph Atteneder Date: Mon, 17 Sep 2018 13:37:03 +0200 Subject: [PATCH] Add Java 10 configuration for merged repositories --- monitor/build.gradle | 6 +++--- pricenode/build.gradle | 4 ++-- relay/build.gradle | 8 ++++---- seednode/build.gradle | 6 +++--- statsnode/build.gradle | 6 +++--- 5 files changed, 15 insertions(+), 15 deletions(-) diff --git a/monitor/build.gradle b/monitor/build.gradle index b00b4f7b43..a4ac1b14d2 100644 --- a/monitor/build.gradle +++ b/monitor/build.gradle @@ -6,7 +6,7 @@ plugins { group = 'network.bisq' version = '0.8.0-SNAPSHOT' -sourceCompatibility = 1.8 +sourceCompatibility = 1.10 mainClassName = 'bisq.monitor.MonitorMain' @@ -20,8 +20,8 @@ dependencies { compile project(':core') compile 'com.sparkjava:spark-core:2.5.2' compile 'net.gpedro.integrations.slack:slack-webhook:1.1.1' - compileOnly 'org.projectlombok:lombok:1.16.16' - annotationProcessor 'org.projectlombok:lombok:1.16.16' + compileOnly 'org.projectlombok:lombok:1.18.2' + annotationProcessor 'org.projectlombok:lombok:1.18.2' } build.dependsOn installDist diff --git a/pricenode/build.gradle b/pricenode/build.gradle index c39959467c..46912983bf 100644 --- a/pricenode/build.gradle +++ b/pricenode/build.gradle @@ -3,8 +3,8 @@ plugins { id "org.springframework.boot" version "1.5.10.RELEASE" } -sourceCompatibility = 1.8 -targetCompatibility = 1.8 +sourceCompatibility = 1.10 +targetCompatibility = 1.10 version = file("src/main/resources/version.txt").text diff --git a/relay/build.gradle b/relay/build.gradle index 9006d27cba..4893a113c8 100644 --- a/relay/build.gradle +++ b/relay/build.gradle @@ -3,8 +3,8 @@ plugins { id "org.springframework.boot" version "1.5.10.RELEASE" } -sourceCompatibility = 1.8 -targetCompatibility = 1.8 +sourceCompatibility = 1.10 +targetCompatibility = 1.10 version = file("src/main/resources/version.txt").text @@ -27,8 +27,8 @@ dependencies { compile("com.turo:pushy:0.13.2") compile("com.google.firebase:firebase-admin:6.2.0") - compileOnly 'org.projectlombok:lombok:1.16.16' - //annotationProcessor 'org.projectlombok:lombok:1.16.16' + compileOnly 'org.projectlombok:lombok:1.18.2' + //annotationProcessor 'org.projectlombok:lombok:1.18.2' } task stage { diff --git a/seednode/build.gradle b/seednode/build.gradle index 9e054eb4da..e7e597687f 100644 --- a/seednode/build.gradle +++ b/seednode/build.gradle @@ -15,7 +15,7 @@ apply plugin: 'com.github.johnrengelman.shadow' group = 'network.bisq' version = '0.8.0-SNAPSHOT' -sourceCompatibility = 1.8 +sourceCompatibility = 1.10 mainClassName = 'bisq.seednode.SeedNodeMain' @@ -30,8 +30,8 @@ repositories { dependencies { compile project(':core') runtime 'org.bouncycastle:bcprov-jdk15on:1.56' - compileOnly 'org.projectlombok:lombok:1.16.16' - annotationProcessor 'org.projectlombok:lombok:1.16.16' + compileOnly 'org.projectlombok:lombok:1.18.2' + annotationProcessor 'org.projectlombok:lombok:1.18.2' } build.dependsOn installDist diff --git a/statsnode/build.gradle b/statsnode/build.gradle index 32d0e2786b..7a3264f13f 100644 --- a/statsnode/build.gradle +++ b/statsnode/build.gradle @@ -6,7 +6,7 @@ plugins { group = 'network.bisq' version = '0.8.0-SNAPSHOT' -sourceCompatibility = 1.8 +sourceCompatibility = 1.10 mainClassName = 'bisq.statistics.StatisticsMain' @@ -18,8 +18,8 @@ repositories { dependencies { compile project(':core') - compileOnly 'org.projectlombok:lombok:1.16.16' - annotationProcessor 'org.projectlombok:lombok:1.16.16' + compileOnly 'org.projectlombok:lombok:1.18.2' + annotationProcessor 'org.projectlombok:lombok:1.18.2' } build.dependsOn installDist