Skip to content

Instantly share code, notes, and snippets.

@agritsik
Last active April 25, 2016 14:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save agritsik/858fd0633c6807f1141216938579acb5 to your computer and use it in GitHub Desktop.
Save agritsik/858fd0633c6807f1141216938579acb5 to your computer and use it in GitHub Desktop.
Maven quickstart archetype
#!/usr/bin/env bash
mvn archetype:generate \
-DarchetypeArtifactId=maven-archetype-quickstart \
-DgroupId=com.agritsik.samples.app \
-DartifactId=test-app
# mvn package && java -cp target/test-app-1.0-SNAPSHOT.jar com.agritsik.samples.app.App
# Output example: Hello World!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment