Maven archetype to create a maven project for a Vanilla Java application.
./mvnw install
mvn archetype:generate \
-DarchetypeGroupId=com.miya10kei.archetype \
-DarchetypeArtifactId=vanilla-java-blank-archetype \
-DarchetypeVersion=0.0.5
Example
mvn archetype:generate \
-DarchetypeGroupId=com.miya10kei.archetype \
-DarchetypeArtifactId=vanilla-java-blank-archetype \
-DarchetypeVersion=0.0.5 \
-DgroupId=com.example \
-DartifactId=hello \
-Dversion=1.0.0-SNAPSHOT \
-B
cd hello
chmod +x mvnw*
./mvnw clean package
java -jar target/hello-1.0.0-SNAPSHOT.jar
Hello World!