maven basic project templates
i generally needs that kind of project.But most maven archetypes generating extra files,jars ... .How can i create simple template of that kind of projects .
1-jsf2 + JPA
2开发者_JAVA技巧-jsf1.2 +JPA
3-spring +jsf2+JPA
This is a simple example by line command:
mvn archetype:generate -DgroupId=com.mycompany.app -DartifactId=my-app -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false
fore more info: https://maven.apache.org/guides/getting-started/maven-in-five-minutes.html
精彩评论