12. Maven
Programming Project 2021/22

12.11. Archetypes

Maven provides project templates, which are called archetypes.

An archetype is defined as an original pattern or model from which all other things of the same kind are made.

Archetypes are provided by Maven and by third parties.

We can create a project based on an archetype by executing:

$ mvn archetype:generate -DarchetypeGroupId=org.apache.maven.archetypes 
      -DarchetypeArtifactId=maven-archetype-quickstart -DarchetypeVersion=1.4

We will be then asked to provide some additional information, such as the groupId, artifactId, and version number.

Read more here.