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-clam.git
commit bd77316a908755c24d76a940174e34b50ab07cfe Author: Oliver Lietz <[email protected]> AuthorDate: Fri Nov 5 20:31:48 2021 +0100 [checkstyle] (javadoc) MissingJavadocMethod --- checkstyle-suppressions.xml | 23 +++++++++++++++++++++++ pom.xml | 2 ++ 2 files changed, 25 insertions(+) diff --git a/checkstyle-suppressions.xml b/checkstyle-suppressions.xml new file mode 100644 index 0000000..12cdfea --- /dev/null +++ b/checkstyle-suppressions.xml @@ -0,0 +1,23 @@ +<?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> + <suppress checks="MissingJavadocMethod" files=".*\/internal\/.*\.java"/> +</suppressions> diff --git a/pom.xml b/pom.xml index 77d8d85..fcc8768 100644 --- a/pom.xml +++ b/pom.xml @@ -100,6 +100,8 @@ </dependencies> <configuration> <configLocation>checks.xml</configLocation> + <suppressionsLocation>checkstyle-suppressions.xml</suppressionsLocation> + <suppressionsFileExpression>checkstyle.suppressions.file</suppressionsFileExpression> </configuration> <executions> <execution>
