Build projects with JDK8 target

Closes gh-36
This commit is contained in:
Brian Clozel
2021-03-05 15:31:21 +01:00
parent b18df6208f
commit b48cacb10a
3 changed files with 10 additions and 5 deletions

View File

@@ -1,4 +1,3 @@
subprojects {
group = 'org.springframework.experimental'
version = "0.1.0-SNAPSHOT"

View File

@@ -8,8 +8,11 @@ plugins {
}
description = "GraphQL Spring Boot Starter"
sourceCompatibility = 1.8
targetCompatibility = 1.8
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
dependencyManagement {
imports {

View File

@@ -6,8 +6,11 @@ plugins {
}
description = "GraphQL Java support with Spring Web frameworks"
sourceCompatibility = 1.8
targetCompatibility = 1.8
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
dependencyManagement {
imports {