Skip to content

Commit

Permalink
RAT-369: Add tweak info about subpackage syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
ottlinger committed Apr 21, 2024
1 parent 39cb8b1 commit 706732f
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 2 deletions.
27 changes: 27 additions & 0 deletions apache-rat/spotbugs_ignore.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?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.
-->
<FindBugsFilter>
<Match>
<!-- Uses tryWithResources, thus closes resource properly:
[ERROR] Medium: org.apache.rat.configuration.builders.ChildContainerBuilder.setResource(String) may fail to close stream
[org.apache.rat.configuration.builders.ChildContainerBuilder] At ChildContainerBuilder.java:[line 62] OS_OPEN_STREAM
-->
<Class name="org.apache.rat.configuration.builders.ChildContainerBuilder"/>
<Bug pattern="OS_OPEN_STREAM"/>
</Match>
</FindBugsFilter>
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -308,8 +308,8 @@ agnostic home for software distribution comprehension and audit tools.
<configuration>
<!-- TODO remove after RAT-369 is done -->
<failOnError>false</failOnError>
<!-- we only want to see our own problems -->
<onlyAnalyze>org.apache.rat.*</onlyAnalyze>
<!-- we only want to see our own problems and in all subpackages -->
<onlyAnalyze>org.apache.rat.-</onlyAnalyze>
<excludeFilterFile>${basedir}/spotbugs_ignore.xml</excludeFilterFile>
<plugins>
<plugin>
Expand Down

0 comments on commit 706732f

Please sign in to comment.