美文网首页
Maven创建工程

Maven创建工程

作者: 雪地脚印 | 来源:发表于2016-03-04 09:51 被阅读0次

mvn archetype:generate
-DgroupId=[your project's group id]
-DartifactId=[your project's artifact id]
-DarchetypeArtifactId=maven-archetype-webapp
-DinteractiveMode=false

mvn archetype:generate
-DgroupId=[your project's group id]
-DartifactId=[your project's artifact id]
-DarchetypeArtifactId=maven-archetype-quickstart
-DinteractiveMode=false

mvn archetype:generate
-DgroupId=[your project's group id]
-DartifactId=[your project's artifact id]
-DinteractiveMode=false

mvn archetype:generate \
-DgroupId=com.alibaba.webx
-DartifactId=tutorial1
-Dversion=1.0-SNAPSHOT
-Dpackage=com.alibaba.webx.tutorial1
-DarchetypeArtifactId=archetype-webx-quickstart
-DarchetypeGroupId=com.alibaba.citrus.sample
-DarchetypeVersion=1.8
-DinteractiveMode=false

相关文章

网友评论

      本文标题:Maven创建工程

      本文链接:https://www.haomeiwen.com/subject/rxjokttx.html