diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-06-02 10:07:42 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-06-05 09:54:05 +0200 |
commit | 492a4f4f833ce18ccbf682e149140333b38ed3c8 (patch) | |
tree | fa1ea9a5467c080bbb3ed289461273a0f93d700e /sonar-plugin-api/pom.xml | |
parent | e91748ef0d6157611e58ced80d741908b9d4571e (diff) | |
download | sonarqube-492a4f4f833ce18ccbf682e149140333b38ed3c8.tar.gz sonarqube-492a4f4f833ce18ccbf682e149140333b38ed3c8.zip |
SONAR-6370 fix classpath with core libs like SLF4J
Diffstat (limited to 'sonar-plugin-api/pom.xml')
-rw-r--r-- | sonar-plugin-api/pom.xml | 25 |
1 files changed, 16 insertions, 9 deletions
diff --git a/sonar-plugin-api/pom.xml b/sonar-plugin-api/pom.xml index c48f2b7263e..c8d352db49a 100644 --- a/sonar-plugin-api/pom.xml +++ b/sonar-plugin-api/pom.xml @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> @@ -12,11 +13,11 @@ <packaging>jar</packaging> <name>SonarQube :: Plugin API</name> - + <properties> <sonar.clirr.reportPath>${project.build.directory}/clirr-report.txt</sonar.clirr.reportPath> </properties> - + <dependencies> <!-- @@ -86,7 +87,11 @@ </dependency> - <!-- TODO to be clarified --> + <!-- + Transitive dependencies available at runtime. They are not shaded with API + as they are not managed by SonarSource. Versions should not be + overridden by plugins though. + --> <dependency> <groupId>org.codehaus.woodstox</groupId> <artifactId>woodstox-core-lgpl</artifactId> @@ -105,6 +110,8 @@ <groupId>org.codehaus.staxmate</groupId> <artifactId>staxmate</artifactId> </dependency> + + <dependency> <groupId>jfree</groupId> <artifactId>jfreechart</artifactId> @@ -131,10 +138,10 @@ <groupId>org.hibernate</groupId> <artifactId>hibernate-core</artifactId> </exclusion> - <exclusion> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-api</artifactId> - </exclusion> + <exclusion> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + </exclusion> </exclusions> </dependency> @@ -252,7 +259,7 @@ </resource> </resources> </build> - + <profiles> <profile> <id>clirr</id> |