aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/sonar-findbugs-plugin/pom.xml
diff options
context:
space:
mode:
authorGodin <mandrikov@gmail.com>2010-10-19 14:20:16 +0000
committerGodin <mandrikov@gmail.com>2010-10-19 14:20:16 +0000
commit0398bddbda6f6c75d1feacd73e7f66c56cfed2c9 (patch)
treea98ad1747f7fb5aa80717d8b3530ba0779ae3aa3 /plugins/sonar-findbugs-plugin/pom.xml
parenta7c59030be71520be728f3576531b149d9bf4b2a (diff)
downloadsonarqube-0398bddbda6f6c75d1feacd73e7f66c56cfed2c9.tar.gz
sonarqube-0398bddbda6f6c75d1feacd73e7f66c56cfed2c9.zip
SONAR-1772: Fix dependencies for findbugs in order to avoid 'VerifyError: Cannot inherit from final class'
Diffstat (limited to 'plugins/sonar-findbugs-plugin/pom.xml')
-rw-r--r--plugins/sonar-findbugs-plugin/pom.xml14
1 files changed, 11 insertions, 3 deletions
diff --git a/plugins/sonar-findbugs-plugin/pom.xml b/plugins/sonar-findbugs-plugin/pom.xml
index d9334950322..2f6587ba895 100644
--- a/plugins/sonar-findbugs-plugin/pom.xml
+++ b/plugins/sonar-findbugs-plugin/pom.xml
@@ -25,11 +25,11 @@
<artifactId>xercesImpl</artifactId>
<version>2.6.2</version>
</dependency>
- <dependency>
+ <!--dependency>
<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
<version>2.6.0</version>
- </dependency>
+ </dependency-->
</dependencies>
</dependencyManagement>
@@ -38,6 +38,7 @@
<groupId>org.codehaus.sonar</groupId>
<artifactId>sonar-plugin-api</artifactId>
<version>${project.version}</version>
+ <scope>provided</scope>
<exclusions>
<exclusion>
<groupId>xalan</groupId>
@@ -61,12 +62,19 @@
<groupId>com.google.code.findbugs</groupId>
<artifactId>findbugs</artifactId>
<version>${findbugs.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>xalan</groupId>
+ <artifactId>xalan</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
<groupId>org.codehaus.sonar</groupId>
<artifactId>sonar-deprecated</artifactId>
<version>${project.version}</version>
- </dependency>
+ <scope>provided</scope>
+ </dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-project</artifactId>