↧
Maven archetypes to create your project folder structure
Maven archetypes are useful for many things, including creating a folder structure to start with, even if you aren’t planning to use maven as your build tool. See a list of available archetypes here....
View ArticleMaven Quickweb Archetype
The maven Quickweb archetype allow you to create a new project with a layout that is essentially a combination of what you get with the standard maven archetypes of quickstart and webapp. The readme on...
View ArticleCreating a Maven multi module project
There is no easy way, or simple archetype, to create a maven multi module project. The approach below is the best way I’ve found so far. 1. Create the top-level root: mvn archetype:generate \...
View Article