]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-1772: Fix dependencies for findbugs in order to avoid 'VerifyError: Cannot...
authorGodin <mandrikov@gmail.com>
Tue, 19 Oct 2010 14:20:16 +0000 (14:20 +0000)
committerGodin <mandrikov@gmail.com>
Tue, 19 Oct 2010 14:20:16 +0000 (14:20 +0000)
plugins/sonar-findbugs-plugin/pom.xml

index d93349503222550bed7275b63f02b6598d0219a7..2f6587ba8959b1fd0412b05f2ee003e6a81e748d 100644 (file)
         <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>
       <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>