This is an automated email from the ASF dual-hosted git repository. olli pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-freemarker.git
commit 7b90f423bf876f2dfee20b6e3213e387890327d6 Author: Oliver Lietz <[email protected]> AuthorDate: Sun Oct 23 17:38:28 2022 +0200 SLING-11634 Enable code checks with Checkstyle --- pom.xml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/pom.xml b/pom.xml index 9a649e2..58a8ada 100644 --- a/pom.xml +++ b/pom.xml @@ -72,6 +72,34 @@ <groupId>org.apache.servicemix.tooling</groupId> <artifactId>depends-maven-plugin</artifactId> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + <version>3.2.0</version> + <dependencies> + <dependency> + <groupId>com.puppycrawl.tools</groupId> + <artifactId>checkstyle</artifactId> + <version>10.3.4</version> + </dependency> + <dependency> + <groupId>de.bildschirmarbeiter</groupId> + <artifactId>checkstyle</artifactId> + <version>3</version> + </dependency> + </dependencies> + <configuration> + <configLocation>checks.xml</configLocation> + </configuration> + <executions> + <execution> + <phase>validate</phase> + <goals> + <goal>check</goal> + </goals> + </execution> + </executions> + </plugin> </plugins> </build>
