maven:建立專案命令
阿新 • • 發佈:2018-11-10
建立普通專案:
mvn archetype:generate -DgroupId=${groupId} -DartifactId=${DartifactId} -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false
建立web專案
mvn archetype:generate -DgroupId=${groupId} -DartifactId=${DartifactId} -DarchetypeArtifactId=maven-archetype-webapp -DinteractiveMode=false
注:
如果xml在本地(什麼意思?請看https://blog.csdn.net/dmw412724/article/details/82981305)
後面加上-DarchetypeCatalog=local
如:
mvn archetype:generate -DgroupId=${groupId} -DartifactId=${DartifactId} -DarchetypeArtifactId=maven-archetype-webapp -DinteractiveMode=false -DarchetypeCatalog=local
以上是立即設定好。實際上可以這樣。
mvn archetype:generate -DarchetypeArtifactId=maven-archetype-quickstart -DarchetypeCatalog=local
然後選擇填空即可。
實際上更可以這樣
mvn archetype:generate。然後選擇填空