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-commons-messaging.git
commit 18e99365b043ba364ccfcd54f1fe02e6671d1f74 Author: Oliver Lietz <[email protected]> AuthorDate: Sun Jul 18 12:36:46 2021 +0200 SLING-10636 Enable code checks with Checkstyle --- pom.xml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/pom.xml b/pom.xml index d4335c9..51f95d6 100644 --- a/pom.xml +++ b/pom.xml @@ -47,6 +47,34 @@ <build> <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + <version>3.1.2</version> + <dependencies> + <dependency> + <groupId>com.puppycrawl.tools</groupId> + <artifactId>checkstyle</artifactId> + <version>8.44</version> + </dependency> + <dependency> + <groupId>de.bildschirmarbeiter</groupId> + <artifactId>checkstyle</artifactId> + <version>1</version> + </dependency> + </dependencies> + <configuration> + <configLocation>checks.xml</configLocation> + </configuration> + <executions> + <execution> + <phase>validate</phase> + <goals> + <goal>check</goal> + </goals> + </execution> + </executions> + </plugin> </plugins> </build>
