Hey, 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:
/src
/main
/resources
/webapp
However I was expecting this:
/src
/main
/java
/resources
/webapp
/test
/java
/resources
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?
Thomas
