From d240e5ead0d54bb908928820666f11e953f1795a Mon Sep 17 00:00:00 2001 From: Vedran Pavic Date: Fri, 29 Mar 2019 22:24:00 +0100 Subject: [PATCH] Polish --- build.gradle | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/build.gradle b/build.gradle index 63961364..86aa2dc4 100644 --- a/build.gradle +++ b/build.gradle @@ -13,17 +13,6 @@ apply plugin: 'io.spring.convention.root' group = 'org.springframework.session' description = 'Spring Session' - ext.releaseBuild = version.endsWith('RELEASE') ext.snapshotBuild = version.endsWith('SNAPSHOT') ext.milestoneBuild = !(releaseBuild || snapshotBuild) - -gradle.taskGraph.whenReady { graph -> - subprojects { - plugins.withType(CheckstylePlugin) { - dependencies { - checkstyle files("$rootDir/etc/checkstyle/src/main/resources") - } - } - } -}