-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfindbugs-exclude.xml
113 lines (113 loc) · 5.3 KB
/
findbugs-exclude.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<?xml version="1.0" encoding="UTF-8"?>
<FindBugsFilter xmlns="http://findbugs.sourceforge.net/filter/3.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://findbugs.sourceforge.net/filter/3.0.0 https://findbugs.googlecode.com/git/findbugs/etc/findbugsfilter.xsd">
<Match>
<Bug pattern="EI_EXPOSE_REP,EI_EXPOSE_REP2"/>
</Match>
<Match>
<Class name="io.machinecode.chainlink.core.execution.EventedWorker" />
<Bug pattern="WA_NOT_IN_LOOP"/>
</Match>
<Match>
<Or>
<Class name="io.machinecode.chainlink.rt.wildfly.service.JobOperatorService$1" />
<Class name="io.machinecode.chainlink.rt.wildfly.service.JobOperatorService$2" />
<Class name="io.machinecode.chainlink.rt.wildfly.service.JobOperatorService$3" />
<Class name="io.machinecode.chainlink.rt.wildfly.service.JobOperatorService$4" />
<Class name="~io\.machinecode\.chainlink\.test\.core\.execution\.BaseTest.*" />
<Class name="~io\.machinecode\.chainlink\.web\.ChainlinkRestAdmin.*" />
<Package name="io.machinecode.chainlink.tck.core.loader"/>
<Package name="io.machinecode.chainlink.tck.core.transport"/>
<Package name="io.machinecode.chainlink.tck.core.repository"/>
<Package name="io.machinecode.chainlink.tck.coherence.transport"/>
</Or>
<Bug pattern="SIC_INNER_SHOULD_BE_STATIC_ANON"/>
</Match>
<Match>
<Or>
<Class name="io.machinecode.chainlink.core.jsl.impl.execution.StepImpl" />
<Class name="io.machinecode.chainlink.repository.infinispan.RunningJobExecutionIdCallable" />
<Class name="io.machinecode.chainlink.core.repository.memory.MemoryRepository" />
<Class name="io.machinecode.chainlink.redis.repository.RedisRepository" />
</Or>
<Bug pattern="SF_SWITCH_NO_DEFAULT"/>
</Match>
<Match>
<Or>
<Class name="io.machinecode.chainlink.core.repository.RepositoryTest" />
</Or>
<Bug pattern="SF_SWITCH_FALLTHROUGH"/>
</Match>
<Match>
<Class name="io.machinecode.chainlink.inject.cdi.CdiExtension" />
<Bug pattern="ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD"/>
</Match>
<Match>
<Or>
<Class name="io.machinecode.chainlink.core.context.ExecutionContextImpl" />
<Class name="io.machinecode.chainlink.core.context.JobContextImpl" />
<Class name="io.machinecode.chainlink.core.context.StepContextImpl" />
<Class name="io.machinecode.chainlink.core.jsl.impl.JobImpl" />
<Class name="io.machinecode.chainlink.core.jsl.impl.ListenerImpl" />
<Class name="io.machinecode.chainlink.core.jsl.impl.execution.StepImpl" />
<Class name="io.machinecode.chainlink.core.jsl.impl.task.ExceptionClassImpl" />
<Class name="io.machinecode.chainlink.inject.seam.SeamInjectionInterceptor" />
</Or>
<Bug pattern="SE_TRANSIENT_FIELD_NOT_RESTORED"/>
</Match>
<Match>
<Or>
<Class name="io.machinecode.chainlink.core.work.ExecutionCallback" />
<Class name="io.machinecode.chainlink.core.work.JobCallback" />
<Package name="io.machinecode.chainlink.tck.core.loader"/>
</Or>
<Bug pattern="SE_NO_SERIALVERSIONID,SE_BAD_FIELD"/>
</Match>
<Match>
<Source name="~.*\.groovy" />
</Match>
<Match>
<Or>
<Class name="io.machinecode.chainlink.core.configuration.ConfigurationImpl" />
<Class name="io.machinecode.chainlink.core.marshalling.JdkMarshalling" />
<Class name="io.machinecode.chainlink.marshalling.jboss.JbossMarshalling" />
<Class name="io.machinecode.chainlink.core.repository.MetricImpl" />
<Class name="io.machinecode.chainlink.repository.jpa.JpaMetric" />
<Class name="io.machinecode.chainlink.repository.jdbc.JdbcRepository" />
<Class name="io.machinecode.chainlink.repository.mongo.MongoMetric" />
<Class name="io.machinecode.chainlink.rt.wildfly.schema.JobOperatorDeploymentAdd" />
</Or>
<Bug code="PZLA" />
</Match>
<Match>
<Class name="io.machinecode.chainlink.repository.jdbc.JdbcRepository"/>
<Bug pattern="SQL_PREPARED_STATEMENT_GENERATED_FROM_NONCONSTANT_STRING"/>
</Match>
<Match>
<Class name="io.machinecode.chainlink.repository.jdbc.JdbcRepository"/>
<Bug pattern="REC_CATCH_EXCEPTION"/>
</Match>
<Match>
<Class name="io.machinecode.chainlink.core.transport.DistributedProxyRepository"/>
<Field name="repositoryId"/>
<Bug pattern="URF_UNREAD_PUBLIC_OR_PROTECTED_FIELD"/>
</Match>
<Match>
<Class name="io.machinecode.chainlink.rt.se.Chainlinkd"/>
<Bug pattern="UW_UNCOND_WAIT"/>
</Match>
<Match>
<Class name="io.machinecode.chainlink.core.transport.LocalTransport" />
<Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/>
</Match>
<Match>
<Or>
<Class name="io.machinecode.chainlink.core.execution.batchlet.artifact.StopBatchlet" />
</Or>
<Bug pattern="NN_NAKED_NOTIFY"/>
</Match>
<Match>
<Package name="~gnu\.trove.*"/>
</Match>
</FindBugsFilter>