Skip to content

Commit

Permalink
[JENKINS-66475] Dependency on JAXB-API preventing migration to Java 11
Browse files Browse the repository at this point in the history
Add JAXB as plugin dependency instead to rely on classes shipped within JDK <= 11
  • Loading branch information
nfalco79 committed Nov 9, 2021
1 parent 5acade5 commit 1747a24
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@
<dtkit-api.version>3.0.0</dtkit-api.version>
<xmlunit.version>2.7.0</xmlunit.version>
<mockito.version>2.17.0</mockito.version>
<junit-plugin.version>1.48</junit-plugin.version>
<workflow-cps.version>2.45</workflow-cps.version>
</properties>

Expand Down Expand Up @@ -88,15 +87,15 @@
<artifactId>checks-api</artifactId>
<version>1.2.0</version>
</dependency>
<dependency>
<groupId>io.jenkins.plugins</groupId>
<artifactId>jaxb</artifactId>
<version>jaxb-2.3.0.1</version>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<dependency>
<groupId>io.jenkins.plugins</groupId>
<artifactId>jaxb</artifactId>
<version>2.3.0.1</version>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>dtkit-api</artifactId>
Expand All @@ -106,7 +105,6 @@
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>junit</artifactId>
<version>${junit-plugin.version}</version>
</dependency>

<dependency>
Expand Down

0 comments on commit 1747a24

Please sign in to comment.