webXmlDir.mkdirs();
File webXml = new File(TARGET_WEBAPP_PATH + "/" + WEB_INF_PATH +
"/" + WEB_XML);
try {
OutputStream outputStream = new FileOutputStream(webXml);
WebXmlGenerator webXmlGenerator = new WebXmlGenerator(appDescriptor);
try {
webXmlGenerator.marshalData(outputStream);
} catch (JAXBException ex) {
throw new TestContainerException(ex);
}
outputStream.close();
} catch (FileNotFoundException ex) {