> How do you see the directories, i.e. code, resources, etc.?

After working with wicket source trees in my own project trees, I've become
keen on keeping things co-located based on pacakge.  My personal preference
is to have a src and a test directory directly under the module directory
with code and resources co-located side-by-side for easy access/lookup.  I
noticed this greatly simplified my build scripts too.

so, for example, we would have

trunk/
|--build.xml
|--pom.xml
|--build.gradle
|--core/
|  |--src/
|  |--test/
|--web/
|  |--src/
|  |--test/
|--support/
|  |--spring/
|  |  |--src/
|  |  |--test/
|  |--ehcache/
|  |  |--src/
|  |  |--test/

etc...

Is this copacetic?  If it is, and we were to have a maven build in addition
to the regular build, could maven handle this directory structure?

Cheers,

Les

Reply via email to