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-crypto.git
commit 1c476ef8e03f52bdf0086ae8763c7e70a404bfd3 Author: Oliver Lietz <[email protected]> AuthorDate: Tue Jul 13 21:08:26 2021 +0200 SLING-10544 Enable code checks with Checkstyle --- checkstyle-suppressions.xml | 22 ++++++++++++++++++++++ pom.xml | 30 ++++++++++++++++++++++++++++++ 2 files changed, 52 insertions(+) diff --git a/checkstyle-suppressions.xml b/checkstyle-suppressions.xml new file mode 100644 index 0000000..d6277ee --- /dev/null +++ b/checkstyle-suppressions.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +--> +<!DOCTYPE suppressions PUBLIC "-//Checkstyle//DTD SuppressionFilter Configuration 1.2//EN" "https://checkstyle.org/dtds/suppressions_1_2.dtd"> +<suppressions> +</suppressions> diff --git a/pom.xml b/pom.xml index bd80a1c..536c859 100644 --- a/pom.xml +++ b/pom.xml @@ -92,6 +92,36 @@ </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-checkstyle-plugin</artifactId> + <version>3.1.2</version> + <dependencies> + <dependency> + <groupId>com.puppycrawl.tools</groupId> + <artifactId>checkstyle</artifactId> + <version>8.44</version> + </dependency> + <dependency> + <groupId>de.bildschirmarbeiter</groupId> + <artifactId>checkstyle</artifactId> + <version>1</version> + </dependency> + </dependencies> + <configuration> + <configLocation>checks.xml</configLocation> + <suppressionsLocation>checkstyle-suppressions.xml</suppressionsLocation> + <suppressionsFileExpression>checkstyle.suppressions.file</suppressionsFileExpression> + </configuration> + <executions> + <execution> + <phase>validate</phase> + <goals> + <goal>check</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> <version>3.14.0</version> <configuration>
