Skip to content

Instantly share code, notes, and snippets.

@flaviosdev
Last active October 3, 2019 23:55
Show Gist options
  • Save flaviosdev/7767ae8e52ffc51c108a16107003a72d to your computer and use it in GitHub Desktop.
Save flaviosdev/7767ae8e52ffc51c108a16107003a72d to your computer and use it in GitHub Desktop.
Comandos do Maven
rem Gerando projeto java simples
mvn archetype:generate -DgroupId=com.mycompany.app -DartifactId=my-app -DarchetypeArtifactId=maven-archetype-quickstart -DarchetypeVersion=1.4 -DinteractiveMode=false
rem Empacota o projeto em um único arquivo jar
mvn package
rem Limpa e reempacota em um único arquivo jar
mvn clean package
rem Compila os arquivos do código fonte
mvn compile
rem
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment