diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-05-17 15:29:54 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-05-19 15:11:42 +0200 |
commit | 7f852552da74db8c2b15d56c55d0b9faff720479 (patch) | |
tree | 1ed035023163d94d5745925e6dcf991eb606e871 /server/sonar-server/pom.xml | |
parent | 56a80500c3f75cc35d04555d8095369762647dc5 (diff) | |
download | sonarqube-7f852552da74db8c2b15d56c55d0b9faff720479.tar.gz sonarqube-7f852552da74db8c2b15d56c55d0b9faff720479.zip |
SONAR-6517 do not package the xml libs provided by Java 1.7+
xml-apis.jar and stax-api.jar do not need to be packaged into distribution nor to be defined as dependencies of sonar-plugin-api.
Diffstat (limited to 'server/sonar-server/pom.xml')
-rw-r--r-- | server/sonar-server/pom.xml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/server/sonar-server/pom.xml b/server/sonar-server/pom.xml index 060f744bfa1..41ea17e5ab8 100644 --- a/server/sonar-server/pom.xml +++ b/server/sonar-server/pom.xml @@ -59,6 +59,13 @@ <groupId>dom4j</groupId> <artifactId>dom4j</artifactId> <version>1.6.1</version> + <exclusions> + <exclusion> + <!-- provided by Java 1.7 --> + <groupId>xml-apis</groupId> + <artifactId>xml-apis</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>com.google.code.gson</groupId> |