Skip to content

Commit

Permalink
Erstatt com.sun.xml.bind med org.glassfish for å få lik implementasjo… (
Browse files Browse the repository at this point in the history
#641)

* Erstatt com.sun.xml.bind med org.glassfish for å få lik implementasjon av jaxb

* Unngår 2 ulike avhengigheter til jaxb
* Bruker den nye, com.son er gammel

* Oppdaterer avhengigheter

---------

Co-authored-by: Stig Strøm <[email protected]>
  • Loading branch information
blommish and stigebil authored Jan 31, 2024
1 parent db0ed56 commit 75bd280
Showing 1 changed file with 6 additions and 14 deletions.
20 changes: 6 additions & 14 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@
https://github.com/navikt/common-java-modules/releases
-->
<common-java-modules.version>3.2023.07.07_09.10-85326e9557f0</common-java-modules.version>
<jaxb-core.version>4.0.3</jaxb-core.version>
<jaxb-impl.version>4.0.3</jaxb-impl.version>
<jaxb.version>4.0.4</jaxb.version>
<cxf.version>4.0.2</cxf.version>

<mockk.version>1.13.5</mockk.version>
Expand Down Expand Up @@ -107,17 +106,17 @@
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>4.0.0</version>
<version>4.0.1</version>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-core</artifactId>
<version>${jaxb-core.version}</version>
<version>${jaxb.version}</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>${jaxb-impl.version}</version>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>${jaxb.version}</version>
</dependency>


Expand Down Expand Up @@ -317,13 +316,6 @@
<version>2.1.0</version>
</dependency>

<dependency>
<groupId>com.sun.xml.ws</groupId>
<artifactId>jaxws-ri</artifactId>
<version>4.0.1</version>
<scope>runtime</scope>
<type>pom</type>
</dependency>
<!--
<dependency>
<groupId>javax.activation</groupId>
Expand Down

0 comments on commit 75bd280

Please sign in to comment.