Issue #1092
This commit is contained in:
parent
2da10944f4
commit
12c0663e6c
|
@ -444,6 +444,14 @@ public class Runner
|
||||||
}
|
}
|
||||||
|
|
||||||
handler.setAttribute(WebInfConfiguration.CONTAINER_JAR_PATTERN, containerIncludeJarPattern);
|
handler.setAttribute(WebInfConfiguration.CONTAINER_JAR_PATTERN, containerIncludeJarPattern);
|
||||||
|
|
||||||
|
//check the configurations, if not explicitly set up, then configure all of them
|
||||||
|
if (handler instanceof WebAppContext)
|
||||||
|
{
|
||||||
|
WebAppContext wac = (WebAppContext)handler;
|
||||||
|
if (wac.getConfigurationClasses() == null || wac.getConfigurationClasses().length == 0)
|
||||||
|
wac.setConfigurationClasses(__plusConfigurationClasses);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue