[java-parent-project-v3] branch master updated: JPAR-77 Override Checkstyle version used by Maven.
Tom Zeller
tzeller at dragonacea.biz
Mon Jul 11 15:05:22 EDT 2016
This is an automated email from the git hooks/post-receive script.
tzeller pushed a commit to branch master
in repository java-parent-project-v3.
View the commit online:
http://git.shibboleth.net/view/?p=java-parent-project-v3.git;a=commit;h=a12b9be511313f681b08d73c5d414f0ba284c010
The following commit(s) were added to refs/heads/master by this push:
new a12b9be JPAR-77 Override Checkstyle version used by Maven.
a12b9be is described below
commit a12b9be511313f681b08d73c5d414f0ba284c010
Author: Tom Zeller <tzeller at dragonacea.biz>
AuthorDate: Mon Jul 11 14:04:54 2016 -0500
JPAR-77 Override Checkstyle version used by Maven.
---
pom.xml | 14 +++++++++++---
1 file changed, 11 insertions(+), 3 deletions(-)
diff --git a/pom.xml b/pom.xml
index 4248039..9c67976 100644
--- a/pom.xml
+++ b/pom.xml
@@ -37,7 +37,8 @@
<spring-webflow.version>2.4.2.RELEASE</spring-webflow.version>
<xmlsec.version>2.0.5</xmlsec.version>
- <checkstyle.version>2.17</checkstyle.version>
+ <checkstyle.version>6.18</checkstyle.version>
+ <checkstyle-plugin.version>2.17</checkstyle-plugin.version>
<checkstyle.configLocation>checkstyle.xml</checkstyle.configLocation>
<maven-javadoc-plugin.version>2.10.3</maven-javadoc-plugin.version>
@@ -468,7 +469,14 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
- <version>${checkstyle.version}</version>
+ <version>${checkstyle-plugin.version}</version>
+ <dependencies>
+ <dependency>
+ <groupId>com.puppycrawl.tools</groupId>
+ <artifactId>checkstyle</artifactId>
+ <version>${checkstyle.version}</version>
+ </dependency>
+ </dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
@@ -655,7 +663,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
- <version>${checkstyle.version}</version>
+ <version>${checkstyle-plugin.version}</version>
<configuration>
<configLocation>${checkstyle.configLocation}</configLocation>
</configuration>
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list