This is an automated email from the ASF dual-hosted git repository. pottlinger pushed a commit to branch feature/RAT-369 in repository https://gitbox.apache.org/repos/asf/creadur-rat.git
commit 0a62cb2ca5dbe6732522c1e4fbb7a9e92159c55e Author: P. Ottlinger <[email protected]> AuthorDate: Sat May 4 16:04:28 2024 +0200 RAT-369: Add checkstyle to build and maven site --- pom.xml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/pom.xml b/pom.xml index aa45fefa..a3a37d45 100644 --- a/pom.xml +++ b/pom.xml @@ -200,6 +200,10 @@ agnostic home for software distribution comprehension and audit tools. </reportSet> </reportSets> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> @@ -301,6 +305,11 @@ agnostic home for software distribution comprehension and audit tools. if ours is different. --> <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + <version>3.3.1</version> + </plugin> <plugin> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-maven-plugin</artifactId> @@ -470,6 +479,10 @@ agnostic home for software distribution comprehension and audit tools. </plugins> </pluginManagement> <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + </plugin> <plugin> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-maven-plugin</artifactId>
