Skip to content

Commit

Permalink
deps: update dependency com.puppycrawl.tools:checkstyle to v10 (#435)
Browse files Browse the repository at this point in the history
* Skip checkstyle on Java 8 builds
  • Loading branch information
renovate-bot committed Jul 18, 2022
1 parent cb8c29c commit bfc8ce1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Expand Up @@ -628,10 +628,10 @@
</repositories>
</profile>
<profile>
<!-- Only run checkstyle plugin on Java 8+ (checkstyle artifact only supports Java 8+) -->
<!-- Only run checkstyle plugin on Java 11+ (checkstyle artifact only supports Java 11+) -->
<id>checkstyle-tests</id>
<activation>
<jdk>[1.8,)</jdk>
<jdk>[1.11,)</jdk>
</activation>
<build>
<plugins>
Expand All @@ -643,7 +643,7 @@
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>9.3</version>
<version>10.3.1</version>
</dependency>
</dependencies>
<executions>
Expand Down

0 comments on commit bfc8ce1

Please sign in to comment.