diff options
author | Joakim Erdfelt | 2010-05-25 18:27:09 +0000 |
---|---|---|
committer | Joakim Erdfelt | 2010-05-25 18:27:09 +0000 |
commit | efce37dd1d8beba1ee124c0b71e13585426062d6 (patch) | |
tree | 5defad85271c510f45511ab3512465a60df22da8 /jetty-aggregate | |
parent | 3050264701307863e37d3c946fa021963fc5a57a (diff) | |
download | org.eclipse.jetty.project-efce37dd1d8beba1ee124c0b71e13585426062d6.tar.gz org.eclipse.jetty.project-efce37dd1d8beba1ee124c0b71e13585426062d6.tar.xz org.eclipse.jetty.project-efce37dd1d8beba1ee124c0b71e13585426062d6.zip |
Cranking up findbugs effort, and disabling findbugs in aggregate and tests projects
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1867 7e9141cc-0065-0410-87d8-b60c137991c4
Diffstat (limited to 'jetty-aggregate')
-rw-r--r-- | jetty-aggregate/pom.xml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/jetty-aggregate/pom.xml b/jetty-aggregate/pom.xml index 9d33865b78..4c37e50c77 100644 --- a/jetty-aggregate/pom.xml +++ b/jetty-aggregate/pom.xml @@ -11,6 +11,24 @@ <name>Jetty :: Aggregate Project</name> <packaging>pom</packaging> <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-pmd-plugin</artifactId> + <configuration> + <!-- No Point running PMD on aggregate projects --> + <skip>true</skip> + </configuration> + </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>findbugs-maven-plugin</artifactId> + <configuration> + <!-- No Point running Findbugs on aggregate projects --> + <skip>true</skip> + </configuration> + </plugin> + </plugins> </build> <modules> <module>jetty-server</module> |