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-content-processing.git
commit 1034c2bd4c6310dd22c0c2f379bd6818e82f37dc Author: Oliver Lietz <[email protected]> AuthorDate: Sat Jul 17 21:54:20 2021 +0200 SLING-10633 Enable code checks with PMD --- pom.xml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/pom.xml b/pom.xml index 09f3835..1bce3f0 100644 --- a/pom.xml +++ b/pom.xml @@ -82,6 +82,22 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-pmd-plugin</artifactId> + <version>3.14.0</version> + <configuration> + <targetJdk>${sling.java.version}</targetJdk> + </configuration> + <executions> + <execution> + <phase>process-classes</phase> + <goals> + <goal>check</goal> + </goals> + </execution> + </executions> + </plugin> </plugins> </build>
