Hi Ben,
You were 100% correct! Adding the below dependencies to my POM fixed
the issue.
I really appreciate the quick response you gave.
Perhaps Thiago or Bob might like to make mention of this on the Tapestry
Upgrade page?
<!-- Java 11 removed support for java.xml.bind, which defines
the Java Architecture for XML Binding (JAXB) API. -->
<!-- In order to fix this issue you need to manually add the
below three JAXB Maven dependencies to your project. -->
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
<version>2.3.0.1</version>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.1</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.3.1</version>
</dependency>
Regards,
Chris.
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org