You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by se...@apache.org on 2015/07/27 10:46:19 UTC

svn commit: r1692837 - in /directory/shared/trunk/ldap: extras/aci/src/checkstyle/ extras/trigger/src/checkstyle/ model/src/checkstyle/ schema/converter/src/checkstyle/

Author: seelmann
Date: Mon Jul 27 08:46:18 2015
New Revision: 1692837

URL: http://svn.apache.org/r1692837
Log:
Suppress checkstyle check for Antlr generated sources

Added:
    directory/shared/trunk/ldap/schema/converter/src/checkstyle/
    directory/shared/trunk/ldap/schema/converter/src/checkstyle/suppressions.xml   (with props)
Modified:
    directory/shared/trunk/ldap/extras/aci/src/checkstyle/suppressions.xml
    directory/shared/trunk/ldap/extras/trigger/src/checkstyle/suppressions.xml
    directory/shared/trunk/ldap/model/src/checkstyle/suppressions.xml

Modified: directory/shared/trunk/ldap/extras/aci/src/checkstyle/suppressions.xml
URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap/extras/aci/src/checkstyle/suppressions.xml?rev=1692837&r1=1692836&r2=1692837&view=diff
==============================================================================
--- directory/shared/trunk/ldap/extras/aci/src/checkstyle/suppressions.xml (original)
+++ directory/shared/trunk/ldap/extras/aci/src/checkstyle/suppressions.xml Mon Jul 27 08:46:18 2015
@@ -41,4 +41,7 @@
 
     <!-- Classes in org.apache.directory.api.asn1.der are forked from Bouncy Castle -->
     <suppress files="org.apache.directory.api.asn1.der" checks="[A-Za-z0-9]" />
+
+    <!-- Exclude Antlr generated sources -->
+    <suppress files="[\\/]generated-sources[\\/]" checks="[a-zA-Z0-9]*"/>
 </suppressions>

Modified: directory/shared/trunk/ldap/extras/trigger/src/checkstyle/suppressions.xml
URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap/extras/trigger/src/checkstyle/suppressions.xml?rev=1692837&r1=1692836&r2=1692837&view=diff
==============================================================================
--- directory/shared/trunk/ldap/extras/trigger/src/checkstyle/suppressions.xml (original)
+++ directory/shared/trunk/ldap/extras/trigger/src/checkstyle/suppressions.xml Mon Jul 27 08:46:18 2015
@@ -25,4 +25,7 @@
 
 <suppressions>
     <suppress files="org.apache.directory.api.ldap.trigger.StoredProcedureParameter" checks="TypeName" />
+
+    <!-- Exclude Antlr generated sources -->
+    <suppress files="[\\/]generated-sources[\\/]" checks="[a-zA-Z0-9]*"/>
 </suppressions>

Modified: directory/shared/trunk/ldap/model/src/checkstyle/suppressions.xml
URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap/model/src/checkstyle/suppressions.xml?rev=1692837&r1=1692836&r2=1692837&view=diff
==============================================================================
--- directory/shared/trunk/ldap/model/src/checkstyle/suppressions.xml (original)
+++ directory/shared/trunk/ldap/model/src/checkstyle/suppressions.xml Mon Jul 27 08:46:18 2015
@@ -60,4 +60,6 @@
     <!-- Contol inferfaces that don't declare any new method -->
     <suppress files="org.apache.directory.api.ldap.model.message.controls" checks="InterfaceIsType" />
 
+    <!-- Exclude Antlr generated sources -->
+    <suppress files="[\\/]generated-sources[\\/]" checks="[a-zA-Z0-9]*"/>
 </suppressions>

Added: directory/shared/trunk/ldap/schema/converter/src/checkstyle/suppressions.xml
URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap/schema/converter/src/checkstyle/suppressions.xml?rev=1692837&view=auto
==============================================================================
--- directory/shared/trunk/ldap/schema/converter/src/checkstyle/suppressions.xml (added)
+++ directory/shared/trunk/ldap/schema/converter/src/checkstyle/suppressions.xml Mon Jul 27 08:46:18 2015
@@ -0,0 +1,29 @@
+<?xml version="1.0"?>
+
+<!--
+  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
+    "-//Puppy Crawl//DTD Suppressions 1.1//EN"
+    "http://www.puppycrawl.com/dtds/suppressions_1_1.dtd">
+
+<suppressions>
+    <!-- Exclude Antlr generated sources -->
+    <suppress files="[\\/]generated-sources[\\/]" checks="[a-zA-Z0-9]*"/>
+</suppressions>

Propchange: directory/shared/trunk/ldap/schema/converter/src/checkstyle/suppressions.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: directory/shared/trunk/ldap/schema/converter/src/checkstyle/suppressions.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml