diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2013-10-01 17:58:15 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2013-10-02 08:40:52 +0200 |
commit | cd96c5a2d601fa5b13e1b15d46f1b4812a745268 (patch) | |
tree | 7d3e5370480d49a1fc6ae5489b68af218438bb89 /pom.xml | |
parent | 6f125c33284cc5b7231cf982d8b7157c8097eb27 (diff) | |
download | sonarqube-cd96c5a2d601fa5b13e1b15d46f1b4812a745268.tar.gz sonarqube-cd96c5a2d601fa5b13e1b15d46f1b4812a745268.zip |
SONAR-4735 Remove the XML libs that are packaged with Java 6
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 30 |
1 files changed, 15 insertions, 15 deletions
@@ -638,11 +638,6 @@ <type>sonar-plugin</type> </dependency> <dependency> - <groupId>asm</groupId> - <artifactId>asm-all</artifactId> - <version>3.2</version> - </dependency> - <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-classworlds</artifactId> <version>2.2.3</version> @@ -663,6 +658,7 @@ <version>10.0.1</version> <exclusions> <exclusion> + <!-- should be declared with scope provided --> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> </exclusion> @@ -771,6 +767,10 @@ <groupId>javax.transaction</groupId> <artifactId>jta</artifactId> </exclusion> + <exclusion> + <groupId>xml-apis</groupId> + <artifactId>xml-apis</artifactId> + </exclusion> </exclusions> </dependency> <dependency> @@ -871,6 +871,10 @@ <artifactId>stax2-api</artifactId> </exclusion> <exclusion> + <groupId>stax</groupId> + <artifactId>stax-api</artifactId> + </exclusion> + <exclusion> <groupId>org.codehaus.woodstox</groupId> <artifactId>woodstox-core-asl</artifactId> </exclusion> @@ -984,6 +988,12 @@ <groupId>org.codehaus.woodstox</groupId> <artifactId>stax2-api</artifactId> <version>3.0.1</version> + <exclusions> + <exclusion> + <groupId>stax</groupId> + <artifactId>stax-api</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>javax.servlet</groupId> @@ -1006,16 +1016,6 @@ <version>4.10</version> </dependency> <dependency> - <groupId>xerces</groupId> - <artifactId>xercesImpl</artifactId> - <version>2.8.1</version> - </dependency> - <dependency> - <groupId>xalan</groupId> - <artifactId>xalan</artifactId> - <version>2.7.1</version> - </dependency> - <dependency> <groupId>xmlunit</groupId> <artifactId>xmlunit</artifactId> <version>1.4</version> |