diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2014-04-17 23:33:27 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2014-04-17 23:33:49 +0200 |
commit | f2dd46cf5745f7c14f2bce20f5131e4e242f8c7c (patch) | |
tree | 11ea192820faf6916a522d59886f923ac5bd6c1f /sonar-batch/pom.xml | |
parent | fa306cf2509a427937642db79e391e48ce85221e (diff) | |
download | sonarqube-f2dd46cf5745f7c14f2bce20f5131e4e242f8c7c.tar.gz sonarqube-f2dd46cf5745f7c14f2bce20f5131e4e242f8c7c.zip |
SONAR-4969 Do not mix batch and server classpaths
Diffstat (limited to 'sonar-batch/pom.xml')
-rw-r--r-- | sonar-batch/pom.xml | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/sonar-batch/pom.xml b/sonar-batch/pom.xml index 4d473f38149..caeffd62bcd 100644 --- a/sonar-batch/pom.xml +++ b/sonar-batch/pom.xml @@ -7,7 +7,6 @@ <version>4.3-SNAPSHOT</version> </parent> - <groupId>org.codehaus.sonar</groupId> <artifactId>sonar-batch</artifactId> <name>SonarQube :: Batch</name> @@ -40,6 +39,16 @@ <dependency> <groupId>org.codehaus.sonar</groupId> <artifactId>sonar-plugin-api</artifactId> + <exclusions> + <exclusion> + <groupId>jfree</groupId> + <artifactId>jcommon</artifactId> + </exclusion> + <exclusion> + <groupId>jfree</groupId> + <artifactId>jfreechat</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.codehaus.sonar</groupId> @@ -52,11 +61,13 @@ <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> + <version>3.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> + <version>3.0</version> <scope>provided</scope> </dependency> <dependency> |