Skip to content

Commit

Permalink
Use JAXB plugin (#124)
Browse files Browse the repository at this point in the history
  • Loading branch information
basil authored May 8, 2022
1 parent 276f947 commit 4aff2ca
Showing 1 changed file with 30 additions and 3 deletions.
33 changes: 30 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@
<properties>
<changelist>999999-SNAPSHOT</changelist>
<gitHubRepo>jenkinsci/database-plugin</gitHubRepo>
<jenkins.version>2.249.1</jenkins.version>
<jenkins.version>2.263.1</jenkins.version>
<java.level>8</java.level>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-2.249.x</artifactId>
<version>961.vf0c9f6f59827</version>
<artifactId>bom-2.263.x</artifactId>
<version>984.vb5eaac999a7e</version>
<scope>import</scope>
<type>pom</type>
</dependency>
Expand All @@ -48,9 +48,36 @@
<groupId>antlr</groupId>
<artifactId>antlr</artifactId>
</exclusion>
<!-- Provided by javax-activation-api plugin -->
<exclusion>
<groupId>javax.activation</groupId>
<artifactId>javax.activation-api</artifactId>
</exclusion>
<!-- Provided by jaxb plugin -->
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
<!-- Provided by jaxb plugin -->
<exclusion>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>io.jenkins.plugins</groupId>
<artifactId>javax-activation-api</artifactId>
<version>1.2.0-3</version> <!-- TODO use version from BOM when possible -->
</dependency>

<dependency>
<groupId>io.jenkins.plugins</groupId>
<artifactId>jaxb</artifactId>
<version>2.3.6-1</version> <!-- TODO use version from BOM when possible -->
</dependency>

<dependency>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
Expand Down

0 comments on commit 4aff2ca

Please sign in to comment.