Skip to content

Commit 0a49814

Browse files
Bump org.jenkins-ci:jenkins from 1.129 to 1.130 (jenkinsci#719)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent f97980a commit 0a49814

File tree

3 files changed

+5
-10
lines changed

3 files changed

+5
-10
lines changed

Diff for: pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.jenkins-ci</groupId>
77
<artifactId>jenkins</artifactId>
8-
<version>1.129</version>
8+
<version>1.130</version>
99
<relativePath />
1010
</parent>
1111

Diff for: src/main/java/org/jenkinsci/maven/plugins/hpi/TestDependencyMojo.java

-4
Original file line numberDiff line numberDiff line change
@@ -927,10 +927,6 @@ public int getHopCount() {
927927
}
928928

929929
@Override
930-
@SuppressFBWarnings(
931-
value = "EQ_COMPARETO_USE_OBJECT_EQUALS",
932-
justification =
933-
"Silly check; it is perfectly reasonable to implement Comparable by writing a compareTo without an equals.")
934930
public int compareTo(DependencyNodeHopCountPair other) {
935931
return Integer.compare(hopCount, other.getHopCount());
936932
}

Diff for: src/spotbugs/excludesFilter.xml

+4-5
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,10 @@
3333
</And>
3434
<And>
3535
<Bug pattern="EQ_COMPARETO_USE_OBJECT_EQUALS"/>
36-
<Class name="org.jenkinsci.maven.plugins.hpi.MavenArtifact"/>
37-
</And>
38-
<And>
39-
<Bug pattern="NP_LOAD_OF_KNOWN_NULL_VALUE"/>
40-
<Class name="org.jenkinsci.maven.plugins.hpi.TestDependencyMojo"/>
36+
<Or>
37+
<Class name="org.jenkinsci.maven.plugins.hpi.MavenArtifact"/>
38+
<Class name="org.jenkinsci.maven.plugins.hpi.TestDependencyMojo$DependencyNodeHopCountPair"/>
39+
</Or>
4140
</And>
4241
<And>
4342
<Bug pattern="NP_NULL_ON_SOME_PATH_FROM_RETURN_VALUE"/>

0 commit comments

Comments
 (0)