Below is the log details.
[ERROR] Failed to execute goal net.thucydides.maven.plugins:maven-thucydides-plugin:0.9.268:aggregate (thucydides-reports) on project tspservice-automation-tests: Execution thucydides-reports of goal net.thucydides.maven.plugins:maven-thucydides-plugin:0.9.268:aggregate failed: Guice provision errors:
[ERROR]
[ERROR] 1) Error injecting constructor, java.lang.NoClassDefFoundError: javax/xml/bind/JAXBException
[ERROR] at net.thucydides.core.reports.json.jackson.JacksonJSONConverter.(JacksonJSONConverter.java:32)
[ERROR] while locating net.thucydides.core.reports.json.jackson.JacksonJSONConverter
[ERROR] at net.thucydides.core.guice.ThucydidesModule.configure(ThucydidesModule.java:57)
[ERROR] while locating net.thucydides.core.reports.json.JSONConverter
I tried with following dependency in pom.xml
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>2.3.3</version>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>2.3.3</version>
</dependency>
Ankitha Mohan is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.