RE: Maven: Unable to create a WAR package due to web.xml

2007-07-23 Thread Vaidya, Supriya A \(US - Chicago\)
I fixed this by changing my 'web' directory to 'webapp' - just the name. Why is this necessary though? Or did I miss something?!?! From: Vaidya, Supriya A (US - Chicago) Sent: Monday, July 23, 2007 3:16 PM To: users@maven.apache.org Subject: Maven: Unable to

Re: Maven: Unable to create a WAR package due to web.xml

2007-07-23 Thread Patrick Schneider
See the default for the warSourceDirectory option in maven-war-plugin: http://maven.apache.org/plugins/maven-war-plugin/war-mojo.html#webappDirectory 'webapp' is the default. Patrick On 7/23/07, Vaidya, Supriya A (US - Chicago) [EMAIL PROTECTED] wrote: I fixed this by changing my 'web'

RE: Maven: Unable to create a WAR package due to web.xml

2007-07-23 Thread Vaidya, Supriya A (US - Chicago)
Thanks Patrick! I included the following in my pom.xml, and now I can work with the 'web' directory - plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-war-plugin/artifactId version2.0/version configuration

RE: Maven: Unable to create a WAR package due to web.xml

2007-07-23 Thread Kiran Kodlady
hey.. u can also this also .. plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-war-plugin/artifactId configuration webXmlrelative path for web.xml starting from root of war module/webXml /configuration