Skip to content

Commit

Permalink
Merge pull request #717 from rnveach/checkstyle_bump
Browse files Browse the repository at this point in the history
bump maven-checkstyle-plugin to 3.1.0
  • Loading branch information
hcoles authored Jan 11, 2020
2 parents 6bcf78b + 64a289a commit 9a78cc6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pitest-build-config/src/main/resources/pitest/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@

<module name="Checker">

<property name="cacheFile" value="${checkstyle.cache.file}" />

<!-- Checks that each Java package has a Javadoc file used for commenting. -->
<!-- See http://checkstyle.sf.net/config_javadoc.html#JavadocPackage -->
<!-- <module name="JavadocPackage"> <property name="allowLegacy" value="true"/>
Expand Down Expand Up @@ -34,8 +36,6 @@

<module name="TreeWalker">

<property name="cacheFile" value="${checkstyle.cache.file}" />

<!-- Checks for Javadoc comments. -->
<!-- See http://checkstyle.sf.net/config_javadoc.html -->
<!-- <module name="JavadocMethod"/> <module name="JavadocType"/> <module
Expand Down
6 changes: 4 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.15</version>
<version>3.1.0</version>
<dependencies>
<dependency>
<groupId>org.pitest</groupId>
Expand All @@ -181,7 +181,9 @@
<configuration>
<failOnViolation>true</failOnViolation>
<configLocation>pitest/checkstyle.xml</configLocation>
<sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
<sourceDirectories>
<sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
</sourceDirectories>
</configuration>
</execution>
</executions>
Expand Down

0 comments on commit 9a78cc6

Please sign in to comment.