S3-Performance-Test icon indicating copy to clipboard operation
S3-Performance-Test copied to clipboard

JAXB missing in newer versions of JAVA

Open jslabonte opened this issue 11 months ago • 0 comments

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>

jslabonte avatar Mar 15 '24 17:03 jslabonte