Skip to content

Commit

Permalink
Merge pull request #203 from jenkinsci/dependabot/maven/master/org.je…
Browse files Browse the repository at this point in the history
…nkins-ci.plugins-plugin-4.50
  • Loading branch information
dependabot[bot] authored Nov 9, 2022
2 parents edeb178 + 2c5e47b commit e86f2f8
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>4.49</version>
<version>4.50</version>
<relativePath />
</parent>
<properties>
Expand Down
25 changes: 25 additions & 0 deletions src/spotbugs/excludesFilter.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?xml version="1.0"?>
<FindBugsFilter>
<!--
Exclusions in this section have been triaged and determined to be
false positives.
-->
<Match>
<Bug pattern="MC_OVERRIDABLE_METHOD_CALL_IN_CONSTRUCTOR"/>
<Class name="jenkins.advancedqueue.PriorityConfiguration"/>
</Match>

<!--
Here lies technical debt. Exclusions in this section have not yet
been triaged. When working on this section, pick an exclusion to
triage, then:
- Add a @SuppressFBWarnings(value = "[...]", justification = "[...]")
annotation if it is a false positive. Indicate the reason why
it is a false positive, then remove the exclusion from this
section.
- If it is not a false positive, fix the bug, then remove the
exclusion from this section.
-->
</FindBugsFilter>

0 comments on commit e86f2f8

Please sign in to comment.