Reputation: 67
How can I "force" maven to generate archetypes for Java EE 7? It only generates for "6". I have ubuntu 12.04 LTS, java jdk 7. I go with "maven archetype:generate", then filter with "jboss".
Many thanks
Upvotes: 0
Views: 68
Reputation: 1367
Try one of the CodeHaus Java EE 7 archetypes. E.g.
mvn -DarchetypeGroupId=org.codehaus.mojo.archetypes -DarchetypeArtifactId=webapp-javaee7 archetype:generate
Upvotes: 1