|
Ok it seems I forget to add dot at the end of package name. This seems to work with updates to Weld as well:
<?xml version="1.0"?>
|
<!DOCTYPE Configure PUBLIC "-//Mort Bay Consulting//DTD Configure//EN" "http://www.eclipse.org/jetty/configure_9_0.dtd">
|
<Configure class="org.eclipse.jetty.webapp.WebAppContext">
|
<Set name="contextPath">/weld-numberguess</Set>
|
<Set name="war"><Property name="jetty.webapps" default="."/>/weld-numberguess.war</Set>
|
<Call name="prependServerClass">
|
<Arg>-org.eclipse.jetty.server.</Arg>
|
</Call>
|
<Call name="prependServerClass">
|
<Arg>-org.eclipse.jetty.servlet.</Arg>
|
</Call>
|
<Call name="prependServerClass">
|
<Arg>-org.eclipse.jetty.util.</Arg>
|
</Call>
|
</Configure>
|
|