On 2/19/06, Ashish Srivastava <[EMAIL PROTECTED]> wrote: > I am using maven2 and have defined the <dependencies> > in the pom.xml. What <scope> should I use? I used > compile and provided but it doesn't create the > WEB-INF/lib directory.
Please keep replies on the mailing list. Using 'provided' will cause the problem you're describing-- it means you expect the dependency to be provided for you at runtime, so Maven will not include it in your webapp. (Compile scope is the default; you don't need to specify it.) What commands are you running? Is the rest of the webapp getting built under 'target'? -- Wendy --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
