|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<FindBugsFilter> |
| 3 | + <!-- |
| 4 | + Exclusions in this section have been triaged and determined to be |
| 5 | + false positives. |
| 6 | + --> |
| 7 | + <Match> |
| 8 | + <!-- Message string names are wrong style for Java but that's how Jenkins does it --> |
| 9 | + <Bug pattern="NM_METHOD_NAMING_CONVENTION" /> |
| 10 | + <Class name="hudson.plugins.jira.Messages" /> |
| 11 | + <Or> |
| 12 | + <Method name="ErrorCommentingIssues" /> |
| 13 | + <Method name="FailedToConnect" /> |
| 14 | + <Method name="FailedToUpdateIssue" /> |
| 15 | + <Method name="FailedToUpdateIssueWithCarryOver" /> |
| 16 | + <Method name="NoJenkinsUrl" /> |
| 17 | + <Method name="NoJiraSite" /> |
| 18 | + <Method name="NoRemoteAccess" /> |
| 19 | + <Method name="UpdatingIssue" /> |
| 20 | + </Or> |
| 21 | + </Match> |
| 22 | + <Match> |
| 23 | + <Bug pattern="MS_SHOULD_BE_FINAL" /> |
| 24 | + <Class name="hudson.plugins.jira.JiraMailAddressResolver" /> |
| 25 | + <Field name="disabled" /> |
| 26 | + </Match> |
| 27 | + |
| 28 | + <!-- |
| 29 | + Here lies technical debt. Exclusions in this section have not yet |
| 30 | + been triaged. When working on this section, pick an exclusion to |
| 31 | + triage, then: |
| 32 | +
|
| 33 | + - Add a @SuppressFBWarnings(value = "[...]", justification = "[...]") |
| 34 | + annotation if it is a false positive. Indicate the reason why |
| 35 | + it is a false positive, then remove the exclusion from this |
| 36 | + section. |
| 37 | +
|
| 38 | + - If it is not a false positive, fix the bug, then remove the |
| 39 | + exclusion from this section. |
| 40 | + --> |
| 41 | + <Match> |
| 42 | + <Bug pattern="NP_PARAMETER_MUST_BE_NONNULL_BUT_MARKED_AS_NULLABLE" /> |
| 43 | + <Class name="hudson.plugins.jira.JiraReleaseVersionUpdaterBuilder$DescriptorImpl" /> |
| 44 | + </Match> |
| 45 | + <Match> |
| 46 | + <Bug pattern="LI_LAZY_INIT_STATIC" /> |
| 47 | + <Class name="hudson.plugins.jira.JiraSite" /> |
| 48 | + <Field name="executorService" /> |
| 49 | + </Match> |
| 50 | + <Match> |
| 51 | + <Bug pattern="NP_NONNULL_PARAM_VIOLATION" /> |
| 52 | + <Class name="hudson.plugins.jira.JiraSession" /> |
| 53 | + <Method name="createIssue" /> |
| 54 | + </Match> |
| 55 | + <Match> |
| 56 | + <Bug pattern="NP_NULL_ON_SOME_PATH_FROM_RETURN_VALUE" /> |
| 57 | + <Class name="hudson.plugins.jira.Updater" /> |
| 58 | + <Method name="perform" /> |
| 59 | + </Match> |
| 60 | + <Match> |
| 61 | + <Bug pattern="NP_NULL_ON_SOME_PATH_FROM_RETURN_VALUE" /> |
| 62 | + <Class name="hudson.plugins.jira.Updater" /> |
| 63 | + <Method name="perform" /> |
| 64 | + </Match> |
| 65 | +</FindBugsFilter> |
0 commit comments