From 2bf92742c2656ca4407a1a4bb51167b202b0255c Mon Sep 17 00:00:00 2001 From: Daniel Gerhardt <code@dgerhardt.net> Date: Sun, 2 Jun 2019 10:44:08 +0200 Subject: [PATCH] Bump Checkstyle Maven plugin and dependency The updated Maven plugin fixes compatibilty with Checkstyle >= 8.2. Checkstyle >= 8.11 is needed for support of the `LambdaParameterName` rule used by Google style checks. --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 957f03bda..eec6ee33d 100644 --- a/pom.xml +++ b/pom.xml @@ -506,12 +506,12 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> - <version>3.0.0</version> + <version>3.1.0</version> <dependencies> <dependency> <groupId>com.puppycrawl.tools</groupId> <artifactId>checkstyle</artifactId> - <version>8.14</version> + <version>8.21</version> </dependency> </dependencies> <configuration> -- GitLab