fix build script to target jdk 1.8

This commit is contained in:
Irmen de Jong 2019-08-26 21:27:45 +02:00
parent 89d469e77e
commit 9afe451b8d
2 changed files with 5 additions and 0 deletions

View File

@ -15,6 +15,8 @@ plugins {
apply plugin: "kotlin"
apply plugin: "java"
targetCompatibility = 1.8
sourceCompatibility = 1.8
repositories {
mavenLocal()

View File

@ -3,6 +3,9 @@ plugins {
id 'java'
}
targetCompatibility = 1.8
sourceCompatibility = 1.8
repositories {
mavenCentral()
}