Repository: commons-release-plugin Updated Branches: refs/heads/master 740556589 -> 2d6b8b764
move checkstyle config in pom to accommodate travis Project: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/commit/2d6b8b76 Tree: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/tree/2d6b8b76 Diff: http://git-wip-us.apache.org/repos/asf/commons-release-plugin/diff/2d6b8b76 Branch: refs/heads/master Commit: 2d6b8b7643b3f17893cf95103a3fc8dbffca2124 Parents: 7405565 Author: Rob Tompkins <chtom...@gmail.com> Authored: Fri May 18 13:23:29 2018 -0400 Committer: Rob Tompkins <chtom...@gmail.com> Committed: Fri May 18 13:23:29 2018 -0400 ---------------------------------------------------------------------- pom.xml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-release-plugin/blob/2d6b8b76/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 13ede9c..fb516b7 100644 --- a/pom.xml +++ b/pom.xml @@ -272,17 +272,17 @@ <plugin> <artifactId>maven-checkstyle-plugin</artifactId> <version>${checkstyle.plugin.version}</version> + <configuration> + <configLocation>${basedir}/checkstyle.xml</configLocation> + <headerLocation>${basedir}/license-header.txt</headerLocation> + <suppressionsLocation>${basedir}/checkstyle-suppressions.xml</suppressionsLocation> + <suppressionsFileExpression>${basedir}/checkstyle-suppressions.xml</suppressionsFileExpression> + <includeTestSourceDirectory>true</includeTestSourceDirectory> + </configuration> <executions> <execution> <id>validate</id> <phase>validate</phase> - <configuration> - <configLocation>${basedir}/checkstyle.xml</configLocation> - <headerLocation>${basedir}/license-header.txt</headerLocation> - <suppressionsLocation>${basedir}/checkstyle-suppressions.xml</suppressionsLocation> - <suppressionsFileExpression>${basedir}/checkstyle-suppressions.xml</suppressionsFileExpression> - <includeTestSourceDirectory>true</includeTestSourceDirectory> - </configuration> <goals> <goal>check</goal> </goals>