Jetty:run does not start a server

Hi, i want to Install the webapps by grunt and start the server in development mode. I use readme at this link

I performed it:

cd

git clone git@github.com:camunda/camunda-bpm-webapp.git
cd camunda-bpm-webapp
npm install
grunt auto-build

and

mvn jetty:run -Pdevelop

and i got an error

[ERROR] Failed to execute goal org.mortbay.jetty:jetty-maven-plugin:8.1.14.v20131031:run (default-cli) on project camunda-webapp: Execution default-cli of goal org.mortbay.jetty:jetty-maven-plugin:8.1.14.v20131031:run failed: A required class was missing while executing org.mortbay.jetty:jetty-maven-plugin:8.1.14.v20131031:run: javax/xml/bind/JAXBException

Environment:
node v12.13.1
npm 6.12.1
os Win 10

Hi @neplatonov,

which JDK do you use?

If you use JDK 11, the error shows that the JAXB libraries had been removed from the JDK and have to be added in the pom.xml explicitly.

Hope this helps, Ingo