diff options
Diffstat (limited to 'it/it-projects/maven/maven-bad-parameters/pom.xml')
-rw-r--r-- | it/it-projects/maven/maven-bad-parameters/pom.xml | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/it/it-projects/maven/maven-bad-parameters/pom.xml b/it/it-projects/maven/maven-bad-parameters/pom.xml new file mode 100644 index 00000000000..a38b06c51b9 --- /dev/null +++ b/it/it-projects/maven/maven-bad-parameters/pom.xml @@ -0,0 +1,47 @@ +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + <groupId>com.sonarsource.it.samples.maven-bad-parameters</groupId> + <artifactId>parent</artifactId> + <version>1.0-SNAPSHOT</version> + <packaging>pom</packaging> + <name>Sonar tests - maven-bad-parameters</name> + <modules> + <module>module_a</module> + <module>module_b</module> + </modules> + + <build> + <plugins> + <plugin> + <artifactId>maven-pmd-plugin</artifactId> + <configuration> + <aggregate>true</aggregate> + <!-- SONAR-518 --> + <skip>true</skip> + <!-- SONAR-593 --> + </configuration> + </plugin> + + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + <configuration> + <skip>true</skip> + <!-- SONAR-519 --> + </configuration> + </plugin> + + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>findbugs-maven-plugin</artifactId> + <configuration> + <skip>true</skip> + <!-- SONAR-593 --> + </configuration> + </plugin> + + </plugins> + </build> + +</project>
\ No newline at end of file |