javax.xml.bind was removed in JDK 11, thus the project fails to compile. From here, it seems like the issue should be resolved by adding the dependencies below to the graph metamodel module:
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.3.0</version>
</dependency>
javax.xml.bindwas removed in JDK 11, thus the project fails to compile. From here, it seems like the issue should be resolved by adding the dependencies below to the graph metamodel module: