Repository: cxf-build-utils Updated Branches: refs/heads/master 3b93f5238 -> 12b7513cf
[CXF-6961] Fixes for eclipse neon Project: http://git-wip-us.apache.org/repos/asf/cxf-build-utils/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf-build-utils/commit/12b7513c Tree: http://git-wip-us.apache.org/repos/asf/cxf-build-utils/tree/12b7513c Diff: http://git-wip-us.apache.org/repos/asf/cxf-build-utils/diff/12b7513c Branch: refs/heads/master Commit: 12b7513cfcb95316bcae2123ad65e1860c29cc44 Parents: 3b93f52 Author: Christian Schneider <[email protected]> Authored: Tue Jul 5 08:42:05 2016 +0200 Committer: Christian Schneider <[email protected]> Committed: Tue Jul 5 08:42:05 2016 +0200 ---------------------------------------------------------------------- buildtools/src/main/resources/cxf-checkstyle.xml | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf-build-utils/blob/12b7513c/buildtools/src/main/resources/cxf-checkstyle.xml ---------------------------------------------------------------------- diff --git a/buildtools/src/main/resources/cxf-checkstyle.xml b/buildtools/src/main/resources/cxf-checkstyle.xml index 6925d8a..56f3e02 100644 --- a/buildtools/src/main/resources/cxf-checkstyle.xml +++ b/buildtools/src/main/resources/cxf-checkstyle.xml @@ -193,6 +193,7 @@ <module name="PackageDeclaration" /> <module name="ReturnCount"> <property name="max" value="6" /> + <property name="maxForVoid" value="6"/> </module> <module name="IllegalType"> @@ -298,6 +299,9 @@ <property name="header" value="/**\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * "License"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n */\n" /> </module> + <module name="SuppressionFilter"> + <property name="file" value="${checkstyle.suppressions.file}" /> + </module> <!-- <module name="RegexpHeader"/> --> <module name="FileLength"> <property name="max" value="3000" />
