Last active
October 3, 2019 23:55
-
-
Save flaviosdev/7767ae8e52ffc51c108a16107003a72d to your computer and use it in GitHub Desktop.
Comandos do Maven
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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