diff options
author | simonbrandhof <simon.brandhof@gmail.com> | 2012-01-06 00:13:54 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2012-01-06 08:31:58 +0100 |
commit | f761e5f31a81285a7d0e624c63835b753db383e9 (patch) | |
tree | ad33ced58e014e2127064f99045faab842af75f3 /plugins/sonar-squid-java-plugin | |
parent | c578ba2e7ed8cc57bc3e8f2d7e753dea400571e3 (diff) | |
download | sonarqube-f761e5f31a81285a7d0e624c63835b753db383e9.tar.gz sonarqube-f761e5f31a81285a7d0e624c63835b753db383e9.zip |
Do not embed google-collections in the plugins checkstyle and squid-java
Diffstat (limited to 'plugins/sonar-squid-java-plugin')
-rw-r--r-- | plugins/sonar-squid-java-plugin/pom.xml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/plugins/sonar-squid-java-plugin/pom.xml b/plugins/sonar-squid-java-plugin/pom.xml index 32b5f5430fd..4fbc9251df1 100644 --- a/plugins/sonar-squid-java-plugin/pom.xml +++ b/plugins/sonar-squid-java-plugin/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> <groupId>org.codehaus.sonar</groupId> @@ -49,6 +50,10 @@ <artifactId>commons-logging</artifactId> </exclusion> <exclusion> + <groupId>com.google.collections</groupId> + <artifactId>google-collections</artifactId> + </exclusion> + <exclusion> <!-- optimization for JAR size --> <groupId>commons-cli</groupId> <artifactId>commons-cli</artifactId> |