exploded

Exploded deployment fails on JBoss 5

I have a web application which deploys fine as an ear file. But when I try to deploy it in exploded form it fails like this: 17:13:17,305 ERROR [AbstractKernelController] Error installing to Start: name=persistence.unit:unitName=app.ear/#app-persistence state=Create java.lang.RuntimeException: could not find relative path: lib/persisten...

If I package a web application with the maven goal war:exploded, why won't pom.xml and pom.properties be included?

Hi, I'm pretty new to Maven and I've noticed an interesting thing in the Maven WAR Plugin. When I package my Java web application with war:war, a zipped war is created. This war contains also the files pom.xml and pom.properties in the META-INF directory. But if I package my application with war:exploded and create an exploded war dire...

would maven be a good fit for this scenario ?

We currently have an ant based project and are contemplating moving to maven. The project is java ee based, however it has a module structure where each module can contain multiple java ee projects. like this: mod1-->subdir-->war-A -->war-B mod1->src mod1->build/classes multiple such modules plus some jars dependencies a...

Deploy "exploded" folder to Tomcat in Eclipse

I just installed Eclipse for Java EE developers, Created a New Project by checking out files through SVN from a repository. I was able to successfully generate an "exploded" web app folder through an ANT build. How do I deploy this exploded folder (not .war file) to Tomcat? Any configuration that needs to be done? Thanks. ...