maven-通過maven命令建立maven專案
這裡預設已經安裝好了Maven工具。可以通過在cmd開啟的命令提示符中執行mvn -v 檢視安裝的maven資訊。
首先要注意mvn archetype:create 在maven3.0.X及以上版本執行時會報錯所以最好運用 mvn archetype:generate 建立maven專案
錯誤資訊類似以下:
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-archetype-plugin:2.4:create (default-cli) on project standalone-pom: Unable to parse configuration
of mojo org.apache.maven.plugins:maven-archetype-plugin:2.4:create for parameter #: Cannot create instance of interface org.apache.maven.artifact.repository.ArtifactRepository -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
第一步:建立web專案:
cd到希望專案儲存的資料夾下,執行以下命令
mvn archetype:generate -DgroupId=包名 -DartifactId=專案名稱 -DarchetypeArtifactId=maven-archetype-webapp
(如果是建立javaProject則是:mvn archetype:generate -DgroupId=包名 -DartifactId=專案名稱 )
例如:
mvn archetype:generate -DgroupId=com.lyx -DartifactId=snatchWeb
-DarchetypeArtifactId=maven-archetype-webapp
過程中可能會讓你選擇你直接回車選擇預設的選項就可以
當出現 BUILD SUCESS 表示maven專案建立成功了,你可以去專案所在的檔案下在看是否存在。
第二步:生成eclipse專案檔案
如果需要匯入到Eclispe編譯器中還需要生成所需的.classpath和project檔案
這時 cd到該專案的專案名稱下執行mvn eclipse:eclipse命令
這樣就可以建立完成了。