diff options
author | Maros Marsalek <mmarsale@cisco.com> | 2016-10-27 14:55:07 +0200 |
---|---|---|
committer | Maros Marsalek <mmarsale@cisco.com> | 2016-10-28 11:06:55 +0000 |
commit | 2b6c5f5dd1530499f3657c8e86fb9c0246c80d73 (patch) | |
tree | b9079e105ec83ee4f28053f071ebec513436c194 /common/honeycomb-parent/pom.xml | |
parent | 9a9c793a0bc09bfc4b232e0626e94ca8b9906843 (diff) |
HONEYCOMB-274 Fix checkstyle license checks
Change-Id: I9a7783bf072b2e2396f0fa1a784bcb57adb689b4
Signed-off-by: Maros Marsalek <mmarsale@cisco.com>
Diffstat (limited to 'common/honeycomb-parent/pom.xml')
-rw-r--r-- | common/honeycomb-parent/pom.xml | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/common/honeycomb-parent/pom.xml b/common/honeycomb-parent/pom.xml index dce5407b4..d050a919d 100644 --- a/common/honeycomb-parent/pom.xml +++ b/common/honeycomb-parent/pom.xml @@ -59,7 +59,7 @@ <!-- plugins --> <checkstyle.plugin.version>2.17</checkstyle.plugin.version> - <checkstyle.version>6.16</checkstyle.version> + <checkstyle.version>7.1.2</checkstyle.version> <maven.javadoc.version>2.10.3</maven.javadoc.version> <jacoco.version>0.7.2.201409121644</jacoco.version> <enforcer.version>1.4</enforcer.version> @@ -205,11 +205,12 @@ <artifactId>maven-checkstyle-plugin</artifactId> <version>${checkstyle.plugin.version}</version> <configuration> - <!-- Override checkstyle configuration to fit Honeycomb coding style--> - <configLocation>honeycomb-checkstyle.xml</configLocation> - <includeTestResources>true</includeTestResources> <!--TODO HONEYCOMB-155 enable fail on violation after issues are resolved + set in as errors in checkstyle xml--> - + <failOnViolation>false</failOnViolation> + <failsOnError>true</failsOnError> + <consoleOutput>true</consoleOutput> + <includeTestResources>true</includeTestResources> + <includeTestSourceDirectory>true</includeTestSourceDirectory> <includes>**\/*.java,**\/*.xml,**\/*.ini,**\/*.sh,**\/*.bat,**\/*.yang</includes> <excludes>**\/target\/, **\/bin\/, @@ -222,7 +223,6 @@ **\/archetype-resources\/</excludes> </configuration> <executions> - <!-- Override license check configuration to fit Honeycomb coding style--> <execution> <id>check-license</id> @@ -231,13 +231,10 @@ </goals> <phase>process-sources</phase> <configuration> - <headerLocation>HONEYCOMB_LICENSE.txt</headerLocation> - <failOnViolation>true</failOnViolation> - <failsOnError>true</failsOnError> + <configLocation>honeycomb-checkstyle-license.xml</configLocation> <outputFile>${project.build.directory}/checkstyle-license-result.xml</outputFile> </configuration> </execution> - <!-- Add logging checks from yangtools --> <execution> <id>check-logging</id> @@ -246,19 +243,20 @@ </goals> <phase>process-sources</phase> <configuration> - <failOnViolation>true</failOnViolation> <configLocation>honeycomb-checkstyle-logging.xml</configLocation> - <consoleOutput>true</consoleOutput> - <includeTestSourceDirectory>true</includeTestSourceDirectory> <sourceDirectory>${project.basedir}</sourceDirectory> <outputFile>${project.build.directory}/checkstyle-logging-result.xml</outputFile> </configuration> </execution> + <!-- Check HC's coding style --> <execution> <goals> <goal>check</goal> </goals> <phase>process-sources</phase> + <configuration> + <configLocation>honeycomb-checkstyle.xml</configLocation> + </configuration> </execution> </executions> <dependencies> |