Hi,
I deployed a Wicket-based app's .war file to Jetty 7.0.2. The problem is that Jetty copies the classpath to a temp dir, but only copies *.class, so *.html is not available for the classloader and I get the error:
WicketMessage: Markup of type 'html' for component 'cz.dynawest.wicket.chat.ChatPage' not found.
Copying the war as an expanded directory helped. Still, I am wondering how to configure Jetty to copy everything.
And, with mvn jetty:run
I get the same error.
Thanks, Ondra