lindelof
lindelof

Reputation: 35240

Maven archetype to generate simple project including site

Is there a Maven archetype that will generate the same scaffolding as maven-archetype-quickstart, but will in addition create the basic project site layout generated by maven-archetype-site? Or do I always have to run each in sequence?

Upvotes: 3

Views: 1562

Answers (2)

Paul Verest
Paul Verest

Reputation: 63912

I know only 2 maven archetypes for site:

  • maven-archetype-site
  • maven-archetype-simple

I wonder what template they use in Apache.

Upvotes: 0

paulgreg
paulgreg

Reputation: 18903

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

I don't think the site will be generated from the initial AppFuse generation but a simple mvn site will create the basic web site.

Upvotes: 1

Related Questions