diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2014-10-23 20:17:34 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2014-10-23 20:17:34 +0200 |
commit | ff739ecc971cf8a9d610477cd414569540fe88b8 (patch) | |
tree | 645391e471f181d05f7247e232cbc67d7b9255c0 /sonar-batch | |
parent | 15345bae3a31ed3c6157edd0ff6b6727be445dae (diff) | |
download | sonarqube-ff739ecc971cf8a9d610477cd414569540fe88b8.tar.gz sonarqube-ff739ecc971cf8a9d610477cd414569540fe88b8.zip |
Remove JFreeChart from batch classpath
Diffstat (limited to 'sonar-batch')
-rw-r--r-- | sonar-batch/pom.xml | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/sonar-batch/pom.xml b/sonar-batch/pom.xml index f1be69f94de..8fad314ca6e 100644 --- a/sonar-batch/pom.xml +++ b/sonar-batch/pom.xml @@ -27,6 +27,16 @@ <dependency> <groupId>org.codehaus.sonar</groupId> <artifactId>sonar-core</artifactId> + <exclusions> + <exclusion> + <groupId>jfree</groupId> + <artifactId>jcommon</artifactId> + </exclusion> + <exclusion> + <groupId>jfree</groupId> + <artifactId>jfreechart</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.codehaus.sonar</groupId> @@ -35,6 +45,16 @@ <dependency> <groupId>org.codehaus.sonar</groupId> <artifactId>sonar-deprecated</artifactId> + <exclusions> + <exclusion> + <groupId>jfree</groupId> + <artifactId>jcommon</artifactId> + </exclusion> + <exclusion> + <groupId>jfree</groupId> + <artifactId>jfreechart</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.codehaus.sonar</groupId> @@ -54,7 +74,7 @@ </exclusion> <exclusion> <groupId>jfree</groupId> - <artifactId>jfreechat</artifactId> + <artifactId>jfreechart</artifactId> </exclusion> </exclusions> </dependency> |