From 8d863f305dc15b94042c3b0cb0111e9c7d0727ee Mon Sep 17 00:00:00 2001 From: Jan Was Date: Tue, 11 Jan 2022 09:46:24 +0100 Subject: [PATCH] Only enable check plugins if air.check.skip-* is false --- airbase/pom.xml | 199 +++++++++++++++++++++++++++++++++++++----------- 1 file changed, 154 insertions(+), 45 deletions(-) diff --git a/airbase/pom.xml b/airbase/pom.xml index 475c073a3..265945435 100644 --- a/airbase/pom.xml +++ b/airbase/pom.xml @@ -907,6 +907,7 @@ + org.apache.maven.plugins @@ -943,56 +944,11 @@ maven-release-plugin - - org.apache.maven.plugins - maven-enforcer-plugin - - org.apache.maven.plugins maven-dependency-plugin - - org.basepom.maven - duplicate-finder-maven-plugin - - - - com.github.spotbugs - spotbugs-maven-plugin - - - - com.hubspot.maven.plugins - dependency-scope-maven-plugin - - - - org.apache.maven.plugins - maven-pmd-plugin - - - - com.mycila - license-maven-plugin - - - - org.jacoco - jacoco-maven-plugin - - - - org.gaul - modernizer-maven-plugin - - - - org.apache.maven.plugins - maven-checkstyle-plugin - - pl.project13.maven git-commit-id-plugin @@ -1300,6 +1256,159 @@ + + enforcer-check + + + air.check.skip-enforcer + false + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + + + + + + duplicate-finder-check + + + air.check.skip-duplicate-finder + false + + + + + + org.basepom.maven + duplicate-finder-maven-plugin + + + + + + dependency-scope-check + + + air.check.skip-dependency-scope + false + + + + + + com.hubspot.maven.plugins + dependency-scope-maven-plugin + + + + + + spotbugs-check + + + air.check.skip-spotbugs + false + + + + + + com.github.spotbugs + spotbugs-maven-plugin + + + + + + pmd-check + + + air.check.skip-pmd + false + + + + + + org.apache.maven.plugins + maven-pmd-plugin + + + + + + license-check + + + air.check.skip-license + false + + + + + + com.mycila + license-maven-plugin + + + + + + jacoco-check + + + air.check.skip-jacoco + false + + + + + + org.jacoco + jacoco-maven-plugin + + + + + + modernizer-check + + + air.check.skip-modernizer + false + + + + + + org.gaul + modernizer-maven-plugin + + + + + + checkstyle-check + + + air.check.skip-checkstyle + false + + + + + + org.apache.maven.plugins + maven-checkstyle-plugin + + + + oss-release