Update source compatibility to Java 10

This commit is contained in:
Christoph Atteneder 2018-09-07 11:35:45 +02:00
parent 73e4ee5f47
commit bd9a208977
No known key found for this signature in database
GPG key ID: CD5DC1C529CDFD3B
5 changed files with 5 additions and 5 deletions

View file

@ -6,7 +6,7 @@ plugins {
group 'network.bisq'
version '-SNAPSHOT'
sourceCompatibility = 1.8
sourceCompatibility = 1.10
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'

View file

@ -11,7 +11,7 @@ ext {
protobufVersion = '3.5.1'
}
sourceCompatibility = 1.8
sourceCompatibility = 1.10
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'

View file

@ -6,7 +6,7 @@ plugins {
group = 'network.bisq'
version = '-SNAPSHOT'
sourceCompatibility = 1.8
sourceCompatibility = 1.10
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'

View file

@ -17,7 +17,7 @@ apply plugin: 'com.github.johnrengelman.shadow'
group = 'network.bisq'
version = '0.8.0-SNAPSHOT'
sourceCompatibility = 1.8
sourceCompatibility = 1.10
mainClassName = 'bisq.desktop.app.BisqAppMain'

View file

@ -6,7 +6,7 @@ plugins {
group = 'network.bisq'
version = '-SNAPSHOT'
sourceCompatibility = 1.8
sourceCompatibility = 1.10
repositories {
jcenter()