diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2011-10-28 11:11:09 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2011-10-28 15:00:01 +0200 |
commit | d4b1bfd3608757d162624682a18bae0710d65092 (patch) | |
tree | d7d40b9851e4d0cf968e135b7833677d15d9eed7 /plugins/sonar-checkstyle-plugin/pom.xml | |
parent | 665638b32ba5fc39528e54b39a2f880debc21c3a (diff) | |
download | sonarqube-d4b1bfd3608757d162624682a18bae0710d65092.tar.gz sonarqube-d4b1bfd3608757d162624682a18bae0710d65092.zip |
SONAR-2584 add support for Java7 in Checkstyle and Squid
Diffstat (limited to 'plugins/sonar-checkstyle-plugin/pom.xml')
-rw-r--r-- | plugins/sonar-checkstyle-plugin/pom.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/sonar-checkstyle-plugin/pom.xml b/plugins/sonar-checkstyle-plugin/pom.xml index d77722f6d66..355213ec3f7 100644 --- a/plugins/sonar-checkstyle-plugin/pom.xml +++ b/plugins/sonar-checkstyle-plugin/pom.xml @@ -14,7 +14,7 @@ <description>Checkstyle is a code analyser to help programmers write Java code that adheres to a coding standard.</description> <properties> - <checkstyle.version>5.1</checkstyle.version> + <checkstyle.version>5.1.1</checkstyle.version> </properties> <repositories> @@ -39,8 +39,8 @@ <scope>provided</scope> </dependency> <dependency> - <groupId>checkstyle</groupId> - <artifactId>checkstyle</artifactId> + <groupId>com.sonarsource.checkstyle</groupId> + <artifactId>checkstyle-java7</artifactId> <version>${checkstyle.version}</version> <exclusions> <exclusion> |