You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
2.5 KiB
58 lines
2.5 KiB
<!-- |
|
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> |
|
<!-- Exclude a few findbugs codes. |
|
EI: May expose internal representation by returning reference to mutable object. |
|
EI2: May expose internal representation by incorporating reference to mutable object. |
|
MS: Malicious code vulnerability. |
|
See http://findbugs.sourceforge.net/bugDescriptions.html for a full description of the findbugs codes. |
|
--> |
|
<Match> |
|
<Bug code="EI,EI2,MS"/> |
|
</Match> |
|
|
|
<Match> |
|
<!-- Suppress a warning about some static initializers in Schema using instances of a |
|
subclass. --> |
|
<Or> |
|
<Class name="org.apache.kafka.connect.data.Schema"/> |
|
<Class name="org.apache.kafka.connect.data.SchemaBuilder"/> |
|
</Or> |
|
<Bug pattern="IC_SUPERCLASS_USES_SUBCLASS_DURING_INITIALIZATION"/> |
|
</Match> |
|
|
|
<Match> |
|
<!-- Suppress warnings about unread protected fields in some public classes. |
|
Although these are not read in Kafka Connect code, they are part of the API. --> |
|
<Or> |
|
<Class name="org.apache.kafka.connect.connector.Connector"/> |
|
<Class name="org.apache.kafka.connect.sink.SinkTask"/> |
|
<Class name="org.apache.kafka.connect.source.SourceTask"/> |
|
</Or> |
|
<Bug pattern="URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD"/> |
|
</Match> |
|
|
|
<Match> |
|
<!-- Suppress warnings about converting an integer number of |
|
milliseconds to a java.util.Date object. We do this intentionally in |
|
org.apache.kafka.connect.data.Time. --> |
|
<Class name="org.apache.kafka.connect.data.Time"/> |
|
<Method name="toLogical"/> |
|
<Bug pattern="ICAST_INT_2_LONG_AS_INSTANT"/> |
|
</Match> |
|
</FindBugsFilter>
|
|
|