added JAXB maven deps to allow build from source on ubuntu

This commit is contained in:
David James McCorrie 2019-06-01 13:48:42 +01:00
parent 7ba5e8f8fb
commit 573077a9ac

16
pom.xml
View file

@ -235,5 +235,21 @@
<artifactId>opencsv</artifactId>
<version>3.7</version>
</dependency>
<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>
</project>