Maven archetype for creating a simple project, including a site

Is there a Maven archetype that will generate the same forests as it does maven-archetype-quickstart, but will additionally create a basic site layout created maven-archetype-site? Or do I always need to run each sequence?

+3
source share
2 answers

I think AppFuse is very often the right tool to use when starting a new Java project. See QuickStart for samples.

I do not think that the site will be created from the initial generation of AppFuse, but a simple one mvn sitewill create a basic website.

+1
source

I know only 2 maven archetypes for the site:

  • Maven archetype site
  • Maven-archetype-simple

, Apache.

0

Source: https://habr.com/ru/post/1698387/


All Articles