diff options
-rw-r--r-- | common/pom.xml | 7 | ||||
-rw-r--r-- | samples/pom.xml | 5 | ||||
-rw-r--r-- | tools/pom.xml | 4 |
3 files changed, 15 insertions, 1 deletions
diff --git a/common/pom.xml b/common/pom.xml index 72f23feb1..ebf2a9488 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -24,14 +24,19 @@ <prerequisites> <maven>3.1.1</maven> </prerequisites> + + <properties> + <sonar.skip>true</sonar.skip> + </properties> + <modules> <module>checkstyle</module> <module>api-parent</module> <module>impl-parent</module> <module>minimal-assembly-descriptor</module> <module>minimal-distribution-parent</module> - </modules> + <!-- DO NOT install or deploy the repo root pom as it's only needed to initiate a build --> <build> <plugins> diff --git a/samples/pom.xml b/samples/pom.xml index 0727eb4c5..4c5eddf8b 100644 --- a/samples/pom.xml +++ b/samples/pom.xml @@ -31,6 +31,11 @@ <prerequisites> <maven>3.1.1</maven> </prerequisites> + + <properties> + <sonar.skip>true</sonar.skip> + </properties> + <modules> <module>interfaces</module> <module>minimal-distribution</module> diff --git a/tools/pom.xml b/tools/pom.xml index c8fb53bf0..f5a1371b2 100644 --- a/tools/pom.xml +++ b/tools/pom.xml @@ -14,6 +14,10 @@ <packaging>pom</packaging> <version>1.16.12-SNAPSHOT</version> + <properties> + <sonar.skip>true</sonar.skip> + </properties> + <modules> <module>archetype</module> </modules> |