log.info("starting deployAnnWar()");
WebArchive war = ShrinkWrap.create(WebArchive.class, TG_ANN + WAR);
war.addClass(TransportGuaranteeAnnotatedServlet.class);
war.addAsResource(TransportGuaranteeTestCase.class.getPackage(), "users.properties", "users.properties");
war.addAsResource(TransportGuaranteeTestCase.class.getPackage(), "roles.properties", "roles.properties");
war.setWebXML(TransportGuaranteeTestCase.class.getPackage(), "annotated-web.xml");
war.addAsWebInfResource(TransportGuaranteeTestCase.class.getPackage(), "jboss-web.xml", "jboss-web.xml");
log.info(war.toString());