Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 945 Bytes

README.md

File metadata and controls

32 lines (20 loc) · 945 Bytes

Archetypes

A series of very tiny archetypes

distribution

these archetypes are distributed with jitpack.io

Archetypes

  • junit5
  • kotlin
  • spring-boot

zsh configuration

function junit5(){
mvn  -B archetype:generate -Pjitpack -DgroupId=io.mosfet.$1 -DartifactId=$1 -DprojectName=$1 -DarchetypeGroupId=com.github.kmos.archetypes -DarchetypeArtifactId=junit5 -DarchetypeVersion=1.2.2 -Dversion=1.0-SNAPSHOT
}

function kotlin(){
mvn  -B archetype:generate -Pjitpack -DgroupId=io.mosfet.$1 -DartifactId=$1 -DprojectName=$1 -DarchetypeGroupId=com.github.kmos.archetypes -DarchetypeArtifactId=kotlin -DarchetypeVersion=1.2.2 -Dversion=1.0-SNAPSHOT
}
function spring(){
mvn  -B archetype:generate -Pjitpack -DgroupId=io.mosfet.$1 -DartifactId=$1 -DprojectName=$1 -DarchetypeGroupId=com.github.kmos.archetypes -DarchetypeArtifactId=spring-boot -DarchetypeVersion=1.2.2 -Dversion=1.0-SNAPSHOT
}