Skip to content

Commit

Permalink
Merge pull request #579 from basil/linkage
Browse files Browse the repository at this point in the history
Implement dynamic linking of Joda Time
  • Loading branch information
rantoniuk authored Dec 12, 2023
2 parents 676c9ff + a2374ff commit 4e5b736
Showing 1 changed file with 17 additions and 4 deletions.
21 changes: 17 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
<jira-rest-client.version>5.2.7</jira-rest-client.version>
<fugue.version>4.7.2</fugue.version>
<!-- jenkins -->
<jenkins.version>2.375.2</jenkins.version>
<jenkins.version>2.401.3</jenkins.version>
<!-- security spotbugs -->
<spotbugs.failOnError>false</spotbugs.failOnError>
<spotless.check.skip>false</spotless.check.skip>
Expand All @@ -63,8 +63,8 @@
<dependencies>
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-2.375.x</artifactId>
<version>2198.v39c76fc308ca</version>
<artifactId>bom-2.401.x</artifactId>
<version>2643.vfa_93ff299d20</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down Expand Up @@ -97,6 +97,11 @@
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</exclusion>
<!-- Provided by joda-time-api plugin -->
<exclusion>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand Down Expand Up @@ -126,6 +131,11 @@
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</exclusion>
<!-- Provided by joda-time-api plugin -->
<exclusion>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
</exclusion>
<!-- Provided by commons-lang3-api plugin -->
<exclusion>
<groupId>org.apache.commons</groupId>
Expand Down Expand Up @@ -222,7 +232,10 @@
<groupId>io.jenkins.plugins</groupId>
<artifactId>jersey2-api</artifactId>
</dependency>
<!-- Jenkins plugin dependencies -->
<dependency>
<groupId>io.jenkins.plugins</groupId>
<artifactId>joda-time-api</artifactId>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-artifact</artifactId>
Expand Down

0 comments on commit 4e5b736

Please sign in to comment.