Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 420 Bytes

README.md

File metadata and controls

37 lines (26 loc) · 420 Bytes

java-hello-world-with-maven

Hello World sample with Java with Maven

Compile

$ mvn compile

Test

$ mvn test

Run

$ mvn exec:java

Package

$ mvn package

Creating this project by Maven

$ mvn archetype:generate \
  -DarchetypeArtifactId=maven-archetype-quickstart \
  -DinteractiveMode=false \
  -DgroupId=info.maigo.lab.hello \
  -DartifactId=maigolab_hello