Skip to content

Commit

Permalink
Merge pull request #1728 from jenkinsci/asm-api
Browse files Browse the repository at this point in the history
Use ASM API plugin as dependency
  • Loading branch information
uhafner authored Apr 15, 2024
2 parents 2e03a10 + 39b31c7 commit 9415329
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -210,9 +210,8 @@

<!-- ASM is required by token-macro but does not declare its dependency -->
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>9.6</version>
<groupId>io.jenkins.plugins</groupId>
<artifactId>asm-api</artifactId>
<scope>test</scope>
</dependency>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class RemoteAxivionDashboard implements AxivionDashboard {
}

@Override
@SuppressFBWarnings("RCN")
@SuppressFBWarnings(value = "RCN", justification = "Value might be null in old serializations")
public JsonObject getIssues(final AxIssueKind kind) {
CredentialsProvider credentialsProvider = new BasicCredentialsProvider();
credentialsProvider.setCredentials(AuthScope.ANY, credentials);
Expand Down

0 comments on commit 9415329

Please sign in to comment.