Skip to content
This repository has been archived by the owner on May 30, 2020. It is now read-only.

Latest commit

 

History

History
30 lines (21 loc) · 1.17 KB

README.md

File metadata and controls

30 lines (21 loc) · 1.17 KB

DevDungeon Library Maven Archetype

Maven metadata URI

This archetype is for creating DevDungeon applications.

Installation

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.

Generating a new project using this archetype

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