Changed to unmaintained
[appc.git] / .code_styling / Checkstyle_Suppression_Filter.xml
1 <?xml version="1.0"?>
2 <!--
3 ============LICENSE_START==========================================
4 ONAP : APPC
5 ===================================================================
6 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
7 ===================================================================
8
9 Unless otherwise specified, all software contained herein is licensed
10 under the Apache License, Version 2.0 (the License);
11 you may not use this software except in compliance with the License.
12 You may obtain a copy of the License at
13
14     http://www.apache.org/licenses/LICENSE-2.0
15
16 Unless required by applicable law or agreed to in writing, software
17 distributed under the License is distributed on an "AS IS" BASIS,
18 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 See the License for the specific language governing permissions and
20 limitations under the License.
21
22 ============LICENSE_END============================================
23 -->
24
25 <!DOCTYPE suppressions PUBLIC
26     "-//Puppy Crawl//DTD Suppressions 1.1//EN"
27     "http://www.puppycrawl.com/dtds/suppressions_1_1.dtd">
28
29 <!-- The suppression filter uses the pattern matcher .find method to match
30   the expressions against each file being examined. -->
31 <suppressions>
32   <!-- Suppress checks for eclipse metafiles and directories -->
33   <suppress files="\.(project|classpath|settings)$" checks=".*" />
34
35   <!-- Suppress checks for all test code -->
36   <suppress files="[\\/]src[\\/]test[\\/]" checks=".*" />
37
38   <!-- Suppress checks for all generated code -->
39   <suppress files="[\\/]target[\\/]" checks=".*" />
40
41   <!-- Suppress checks for all archive type files -->
42   <suppress files=".+\.(?:jar|zip|war|class|tar|bin)$" checks=".*" />
43
44   <!-- Suppress checks for all image files -->
45   <suppress files=".+\.(?:png|gif|jpg|jpeg)$" checks=".*" />
46
47   <!-- Suppress checks for certain non-java files -->
48   <suppress files=".+\.(?:cql|xml|xsd|xsl|wsdl)$" checks=".*" />
49 </suppressions>