Skip to content

Commit

Permalink
chore: use latest checkstyle version when using checkstyle-maven-plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
murdos committed Dec 19, 2024
1 parent 23e5c53 commit 993d83a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@
<testcontainers.version>1.20.4</testcontainers.version>
<mongock.version>5.5.0</mongock.version>
<git-commit-id-plugin.version>9.0.1</git-commit-id-plugin.version>
<checkstyle.version>10.21.0</checkstyle.version>
<maven-checkstyle-plugin.version>3.6.0</maven-checkstyle-plugin.version>

<frontend-maven-plugin.version>1.15.1</frontend-maven-plugin.version>
Expand Down Expand Up @@ -588,6 +589,13 @@
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>${checkstyle.version}</version>
</dependency>
</dependencies>
</plugin>

<plugin>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public String render(String message, Map<String, ?> context) {
}
}

private static class CustomMustacheFactory extends DefaultMustacheFactory {
private static final class CustomMustacheFactory extends DefaultMustacheFactory {

@Override
public MustacheVisitor createMustacheVisitor() {
Expand Down

0 comments on commit 993d83a

Please sign in to comment.