We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59e31e1 commit 8ce2622Copy full SHA for 8ce2622
build.gradle
@@ -33,8 +33,9 @@ configure(moduleProjects) {
33
apply plugin: 'org.springframework.graphql.compiler'
34
35
java {
36
- sourceCompatibility = JavaVersion.VERSION_1_8
37
- targetCompatibility = JavaVersion.VERSION_1_8
+ toolchain {
+ languageVersion = JavaLanguageVersion.of(8)
38
+ }
39
}
40
41
pluginManager.withPlugin("kotlin") {
buildSrc/build.gradle
@@ -9,9 +9,6 @@ repositories {
9
maven { url "https://repo.spring.io/release" }
10
11
12
-sourceCompatibility = 1.8
13
-targetCompatibility = 1.8
14
-
15
dependencies {
16
checkstyle "io.spring.javaformat:spring-javaformat-checkstyle:${javaFormatVersion}"
17
implementation("io.spring.javaformat:spring-javaformat-gradle-plugin:${javaFormatVersion}")
0 commit comments