Clean up unnecessary gradle plugin application

'checkstyle' and 'pmd' are applied elsewhere and don't need to be applied at
the root level. 'maven' isn't needed here, and actually causes additional
artifacts to be generated that aren't needed.
This commit is contained in:
Roy Clarkson
2020-04-07 10:33:19 -04:00
parent c9b0763f70
commit 316d5d7287

View File

@@ -65,13 +65,10 @@ checkstyle {
configure(allprojects) {
group = "org.springframework.cloud"
apply plugin: "maven"
apply plugin: "eclipse"
apply plugin: "idea"
apply plugin: "jacoco"
apply plugin: "pmd"
apply plugin: "checkstyle"
apply plugin: "propdeps"
apply plugin: "propdeps-idea"
apply plugin: "propdeps-eclipse"