JAXB API Maven Dependency - RameshMF/java-json-processing-tutorial GitHub Wiki
JAXB API
Copy below JAXB API maven dependency and paste in your project pom.xml file:
<!-- https://mvnrepository.com/artifact/javax.xml.bind/jaxb-api -->
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.4.0-b180830.0359</version>
</dependency>
Copy below JAXB API gradle dependency and paste in your project build.gradle file:
// https://mvnrepository.com/artifact/javax.xml.bind/jaxb-api
compile group: 'javax.xml.bind', name: 'jaxb-api', version: '2.4.0-b180830.0359'