This archetype is for creating DevDungeon applications.
Run mvn install
on this project to install it to your local repository
and then you can run mvn archetype:generate
using the following command.
Minimal options, will prompt for needed values
mvn archetype:generate \
-DarchetypeGroupId=com.devdungeon.maven.archetypes \
-DarchetypeArtifactId=application \
-DarchetypeVersion=0.2.0
Provide all values at once
mvn archetype:generate \
-DarchetypeGroupId=com.devdungeon.maven.archetypes \
-DarchetypeArtifactId=application \
-DarchetypeVersion=0.2.0 \
-DgroupId=com.devdungeon.apps \
-DartifactId=appname \
-Dversion=1.0.0