Merge pull request #148 from machshev/hotfix/pom-xml-update-jaxb-deps

Added JAXB maven dependency to pom.xml to allow build from source on ubuntu
This commit is contained in:
openaudible 2019-09-23 15:59:59 -07:00 committed by GitHub
commit 28181c8321
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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>