[java-parent-project] 02/03: Update JAXB implementation to 2.3.6, split from API
Ian Young
ian at iay.org.uk
Tue Mar 22 17:38:57 UTC 2022
This is an automated email from the git hooks/post-receive script.
iay pushed a commit to branch main
in repository java-parent-project.
View the commit online:
http://git.shibboleth.net/view/?p=java-parent-project.git;a=commit;h=8a066aebefefac8dd46c2ddae88d107cc1297019
commit 8a066aebefefac8dd46c2ddae88d107cc1297019
Author: Ian Young <ian at iay.org.uk>
AuthorDate: Tue Mar 22 17:27:11 2022 +0000
Update JAXB implementation to 2.3.6, split from API
Previously the API and implementation always had the same version.
This has stopped being the case, so two properties are now required.
---
pom.xml | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/pom.xml b/pom.xml
index 410c933..54944ef 100644
--- a/pom.xml
+++ b/pom.xml
@@ -44,7 +44,8 @@
<guava.version>31.1-jre</guava.version>
<jackson.version>2.13.2</jackson.version>
<jakarta.activation.version>1.2.2</jakarta.activation.version>
- <jakarta.jaxb.version>2.3.3</jakarta.jaxb.version>
+ <jakarta.jaxb-api.version>2.3.3</jakarta.jaxb-api.version>
+ <jakarta.jaxb-impl.version>2.3.6</jakarta.jaxb-impl.version>
<jakarta.json.version>1.1.6</jakarta.json.version>
<jakarta.mail.version>1.6.7</jakarta.mail.version>
<jetty.groupId>org.eclipse.jetty</jetty.groupId>
@@ -340,7 +341,7 @@
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
- <version>${jakarta.jaxb.version}</version>
+ <version>${jakarta.jaxb-api.version}</version>
</dependency>
<dependency>
@@ -608,7 +609,7 @@
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
- <version>${jakarta.jaxb.version}</version>
+ <version>${jakarta.jaxb-impl.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list