S3-Performance-Test
S3-Performance-Test copied to clipboard
JAXB missing in newer versions of JAVA
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>