-1
許多工具和方法用於將ant從maven轉換爲maven,但是這種遷移最適合什麼? 任何幫助表示讚賞。將Ant模塊轉換爲Maven,最佳實踐是什麼?
許多工具和方法用於將ant從maven轉換爲maven,但是這種遷移最適合什麼? 任何幫助表示讚賞。將Ant模塊轉換爲Maven,最佳實踐是什麼?
雖然這些可能還不夠,但我已經編譯了一些將模塊從ant轉換爲maven的常用實踐。
build.xml
。你不得不再次重寫它,因爲maven完全不使用它。pom.xml
。maven-compiler-plugin
定義<mainClass>src.com.test.Main</mainClass>
中的主類。請參閱this的答案。build.xml
中使用的.jar,請在線搜索其依賴關係,然後在pom.xml中添加。您還可以添加local dependencies in your pom.xml。有關更多最佳實踐,請參閱此答案。
Moving onto Maven Anyway...