You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ol...@apache.org on 2021/07/17 20:02:14 UTC

[sling-org-apache-sling-commons-content-processing] 03/09: SLING-10633 Enable code checks with PMD

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 <ol...@apache.org>
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>