2016-08-20 77 views

回答

0

雖然這些可能還不夠,但我已經編譯了一些將模塊從ant轉換爲maven的常用實踐。

  1. 完全刪除您的build.xml。你不得不再次重寫它,因爲maven完全不使用它。
  2. 引入新的pom.xml
  3. 使用maven-compiler-plugin定義<mainClass>src.com.test.Main</mainClass>中的主類。請參閱this的答案。
  4. 對於您在build.xml中使用的.jar,請在線搜索其依賴關係,然後在pom.xml中添加。您還可以添加local dependencies in your pom.xml
  5. 將您的圖像,文本,音頻,視頻,文檔,pdf,xml傳輸到資源文件夾。 (另請參閱:What is the purpose for the resource folder?

有關更多最佳實踐,請參閱此答案。
Moving onto Maven Anyway...