JAXB have been removed in latest version of JAVA, you need to add it manually in pom.xml or you get the following error: java.lang.ClassNotFoundException: javax.xml.bind.DatatypeConverter
Fix; open pom.xml and add the following in dependencies:
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.1</version>
</dependency>
JAXB have been removed in latest version of JAVA, you need to add it manually in pom.xml or you get the following error: java.lang.ClassNotFoundException: javax.xml.bind.DatatypeConverter
Fix; open pom.xml and add the following in dependencies: