On 11/27/07, Thomas Van de Velde <[EMAIL PROTECTED]> wrote: > I was trying out maven-archetype-webapp with Maven 2.0.7 and maven-archetype > 1.0-alpha-7 and noticed that the following directory structure is created: ... > Is there not supposed to be a directory structure for Java source code and > unit test source code and resources? > > Is this a bug or am I missing out on a best practice?
It's intentional. The recommendation is to have a separate module for the Java code and resources, and to declare it as a dependency in your webapp. (However, there's nothing stopping you from creating the directories and using them, which is often fine for simple webapps, example apps for frameworks for example.) -- Wendy --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
