Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 652 Bytes

File metadata and controls

29 lines (20 loc) · 652 Bytes

TDD Starter

Java CI with Maven

This is a Maven archetype for quickly bootstrapping a Java Maven project for TDD kata goodness.

Use

Maven must be available

Installation in local repository

mvn install

Use to generate a new project

The magic incantation is something like

mvn archetype:generate              \
  -DarchetypeGroupId=name.prochyra  \
  -DarchetypeArtifactId=tdd-starter \
  -DarchetypeVersion=1.0            \
  -DgroupId=<my.groupid>            \
  -DartifactId=<my-artifactId>

BOOM!