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 b552f150db859bb9a84f735724890a6671c2ef52 Author: Oliver Lietz <[email protected]> AuthorDate: Sun Jul 18 12:45:31 2021 +0200 SLING-10638 Enable code checks with SpotBugs --- pom.xml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/pom.xml b/pom.xml index bcc034c..a2829fa 100644 --- a/pom.xml +++ b/pom.xml @@ -91,6 +91,28 @@ </execution> </executions> </plugin> + <plugin> + <groupId>com.github.spotbugs</groupId> + <artifactId>spotbugs-maven-plugin</artifactId> + <version>4.3.0</version> + <configuration> + <plugins> + <plugin> + <groupId>com.h3xstream.findsecbugs</groupId> + <artifactId>findsecbugs-plugin</artifactId> + <version>1.11.0</version> + </plugin> + </plugins> + </configuration> + <executions> + <execution> + <phase>process-classes</phase> + <goals> + <goal>check</goal> + </goals> + </execution> + </executions> + </plugin> </plugins> </build>
