Skip to content

Commit

Permalink
adding JaxB as dependency (this is not there by default after Java 8)
Browse files Browse the repository at this point in the history
  • Loading branch information
bmvermeer committed Sep 3, 2021
1 parent 36e98b4 commit 3bbcb54
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,24 @@
</modules>
<packaging>pom</packaging>

<dependencies>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.3.0</version>
</dependency>
</dependencies>

<licenses>
<license>
<name>MIT License</name>
Expand Down

0 comments on commit 3bbcb54

Please sign in to comment.