Skip to content

Commit

Permalink
SLING-11638 Enable code checks with PMD
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverlietz committed Oct 26, 2022
1 parent 05ccf0e commit cab7b0d
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,22 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>3.19.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>

Expand Down

0 comments on commit cab7b0d

Please sign in to comment.