aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/sonar-checkstyle-plugin/pom.xml
diff options
context:
space:
mode:
authorsimonbrandhof <simon.brandhof@gmail.com>2012-01-06 00:13:54 +0100
committerSimon Brandhof <simon.brandhof@gmail.com>2012-01-06 08:31:58 +0100
commitf761e5f31a81285a7d0e624c63835b753db383e9 (patch)
treead33ced58e014e2127064f99045faab842af75f3 /plugins/sonar-checkstyle-plugin/pom.xml
parentc578ba2e7ed8cc57bc3e8f2d7e753dea400571e3 (diff)
downloadsonarqube-f761e5f31a81285a7d0e624c63835b753db383e9.tar.gz
sonarqube-f761e5f31a81285a7d0e624c63835b753db383e9.zip
Do not embed google-collections in the plugins checkstyle and squid-java
Diffstat (limited to 'plugins/sonar-checkstyle-plugin/pom.xml')
-rw-r--r--plugins/sonar-checkstyle-plugin/pom.xml13
1 files changed, 8 insertions, 5 deletions
diff --git a/plugins/sonar-checkstyle-plugin/pom.xml b/plugins/sonar-checkstyle-plugin/pom.xml
index 47a47e9de6f..b1171ec63d3 100644
--- a/plugins/sonar-checkstyle-plugin/pom.xml
+++ b/plugins/sonar-checkstyle-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>
@@ -11,7 +12,8 @@
<artifactId>sonar-checkstyle-plugin</artifactId>
<packaging>sonar-plugin</packaging>
<name>Sonar :: Plugins :: Checkstyle</name>
- <description>Checkstyle is a code analyser to help programmers write Java code that adheres to a coding standard.</description>
+ <description>Checkstyle is a code analyser to help programmers write Java code that adheres to a coding standard.
+ </description>
<properties>
<checkstyle.version>5.5</checkstyle.version>
@@ -33,8 +35,8 @@
<artifactId>commons-logging</artifactId>
</exclusion>
<exclusion>
- <groupId>com.google.guava</groupId>
- <artifactId>guava</artifactId>
+ <groupId>com.google.collections</groupId>
+ <artifactId>google-collections</artifactId>
</exclusion>
<exclusion>
<groupId>commons-lang</groupId>
@@ -102,7 +104,8 @@
<pluginKey>checkstyle</pluginKey>
<pluginName>Checkstyle</pluginName>
<pluginClass>org.sonar.plugins.checkstyle.CheckstylePlugin</pluginClass>
- <pluginDescription><![CDATA[Analyze Java code with <a href="http://checkstyle.sourceforge.net/">Checkstyle</a> ${checkstyle.version}.]]></pluginDescription>
+ <pluginDescription>
+ <![CDATA[Analyze Java code with <a href="http://checkstyle.sourceforge.net/">Checkstyle</a> ${checkstyle.version}.]]></pluginDescription>
</configuration>
</plugin>