Last active
February 9, 2017 02:30
-
-
Save humbertodias/e09f16f1599489a3ea4bc274b8a34ed7 to your computer and use it in GitHub Desktop.
Maven Archetype:generate
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
# WebApp | |
mvn archetype:generate \ | |
-DgroupId=meugrupo \ | |
-DartifactId=meuprojeto \ | |
-DarchetypeArtifactId=maven-archetype-webapp \ | |
-DinteractiveMode=false | |
# Console App - Java 7 | |
mvn archetype:generate \ | |
-DgroupId=com.mycompany.app \ | |
-DartifactId=my-app \ | |
-DarchetypeArtifactId=maven-archetype-quickstart \ | |
-DinteractiveMode=false | |
# Console App - Java 8 | |
Just add on pom.xml | |
<properties> | |
<!-- maven-compiler-plugin configuration --> | |
<maven.compiler.source>1.8</maven.compiler.source> | |
<maven.compiler.target>1.8</maven.compiler.target> | |
</properties> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment