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-mail.git
commit dc1efbdae5056c2b625ded87697127c0e801ff14 Author: Oliver Lietz <[email protected]> AuthorDate: Tue Jul 20 22:03:20 2021 +0200 [checkstyle] (metrics) ClassFanOutComplexity purpose of the implementation is to free users from the complexity of Jakarta Mail --- checkstyle-suppressions.xml | 24 ++++++++++++++++++++++++ pom.xml | 2 ++ 2 files changed, 26 insertions(+) diff --git a/checkstyle-suppressions.xml b/checkstyle-suppressions.xml new file mode 100644 index 0000000..c59571d --- /dev/null +++ b/checkstyle-suppressions.xml @@ -0,0 +1,24 @@ +<?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="ClassFanOutComplexity" files=".*\/SimpleMailService\.java"/> + <suppress checks="ClassFanOutComplexity" files=".*\/SimpleMessageBuilder\.java"/> +</suppressions> diff --git a/pom.xml b/pom.xml index 1732c8f..f7f77bb 100644 --- a/pom.xml +++ b/pom.xml @@ -98,6 +98,8 @@ </dependencies> <configuration> <configLocation>checks.xml</configLocation> + <suppressionsLocation>checkstyle-suppressions.xml</suppressionsLocation> + <suppressionsFileExpression>checkstyle.suppressions.file</suppressionsFileExpression> </configuration> <executions> <execution>
