From 57fb7c59f50f3c9e6607f03c4caf696d92073e0f Mon Sep 17 00:00:00 2001 From: Brian Clozel Date: Wed, 16 Jun 2021 12:13:35 +0200 Subject: [PATCH] Fix build and disable jjavaformat + checkstyle Right now the Spring JavaFormat and Checkstyle arrangement doesn't work for the Spring GraphQL source code. This commit disables the dedicated Gradle conventions until we find a better solution. --- build.gradle | 1 - graphql-spring-boot-starter/build.gradle | 1 - 2 files changed, 2 deletions(-) diff --git a/build.gradle b/build.gradle index e99d1a48..4e427c41 100644 --- a/build.gradle +++ b/build.gradle @@ -25,7 +25,6 @@ subprojects { configure(moduleProjects) { apply plugin: 'java-library' - apply plugin: 'org.springframework.graphql.conventions' java { sourceCompatibility = JavaVersion.VERSION_1_8 diff --git a/graphql-spring-boot-starter/build.gradle b/graphql-spring-boot-starter/build.gradle index 92682556..6bfde176 100644 --- a/graphql-spring-boot-starter/build.gradle +++ b/graphql-spring-boot-starter/build.gradle @@ -3,7 +3,6 @@ import org.springframework.boot.gradle.plugin.SpringBootPlugin plugins { id 'org.springframework.boot' version '2.5.0' apply false id 'java-library' - id 'org.springframework.graphql.conventions' } group = 'org.springframework.experimental'