Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,19 @@
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>jackson2-api</artifactId>
</dependency>
<dependency>
<!--
jackson2-api 2.19+ delegates jackson-annotations to a separate
jackson-annotations2-api plugin. Declare it explicitly so the
generated Plugin-Dependencies manifest entry lets the jfrog
plugin classloader resolve JsonInclude$Include through the
same loader jackson2-api uses, avoiding a LinkageError
(loader constraint violation) at runtime.
-->
<groupId>io.jenkins.plugins</groupId>
<artifactId>jackson-annotations2-api</artifactId>
<version>2.21-7.v4777a_f3a_a_d47</version>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plain-credentials</artifactId>
Expand Down
Loading