Is there any Apache Click maven archetype similar to Wicket's quick start? Similar to http://wicket.apache.org/start/quickstart.html Basically what I need is a way to get started using Apache Click quickly using Maven. Thanks in advance.
I never tried it myself, but this project provides a maven archetype for click. It doesn't look like they provide it in a public repository, so you will need to check the sources, compile&install it and than you'll be able to use it, e.g.:
$ git clone https://github.com/gilbertoca/click-archetype.git
$ cd click-archetype/
$ mvn clean install
$ mvn archetype:generate
[...]
387: local -> maven-archetype-click (An archetype which generates a simplified sample of the Apache Click Framework.)
[...]