Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoakim Erdfelt2010-06-16 17:21:50 +0000
committerJoakim Erdfelt2010-06-16 17:21:50 +0000
commit04d29783e325747cc4e9885cc889b8c299888896 (patch)
tree13653420e9bcc2c710f15c052c7789f395994a73 /jetty-ajp
parentbfc76bcad76f8db5381aed4d3a6d09c2f17bc5dc (diff)
downloadorg.eclipse.jetty.project-04d29783e325747cc4e9885cc889b8c299888896.tar.gz
org.eclipse.jetty.project-04d29783e325747cc4e9885cc889b8c299888896.tar.xz
org.eclipse.jetty.project-04d29783e325747cc4e9885cc889b8c299888896.zip
Limiting scope of Findbugs run.
Configuring Reporting for PMD, Findbugs, JXR, JavaDoc. Fixing PMD configuration inheritence bug with sub-projects. git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@2013 7e9141cc-0065-0410-87d8-b60c137991c4
Diffstat (limited to 'jetty-ajp')
-rw-r--r--jetty-ajp/pom.xml7
1 files changed, 7 insertions, 0 deletions
diff --git a/jetty-ajp/pom.xml b/jetty-ajp/pom.xml
index 499be149db..ebc09a7437 100644
--- a/jetty-ajp/pom.xml
+++ b/jetty-ajp/pom.xml
@@ -54,6 +54,13 @@
</execution>
</executions>
</plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>findbugs-maven-plugin</artifactId>
+ <configuration>
+ <onlyAnalyze>org.eclipse.jetty.ajp.*</onlyAnalyze>
+ </configuration>
+ </plugin>
</plugins>
</build>
<dependencies>

Back to the top