我在Maven中很新。我需要創建應該打印名稱的maven插件。如何使用原型創建maven插件
所以,如果我想在我的其他項目使用這個插件,我需要有以下插件配置
<configuration>
<Team>
<name>test1</name>
<name>test2</name>
<name>test3</name>
</Team>
<enabled>true</enabled>
</configuration>
我試圖尋找在使用原型創建插件的任何教程。沒有成功 需要幫助,或者你可以提供maven插件的好源碼
爲什麼和你在哪裏要打印的名字,這樣可以使用maven酒店還 – Arpit 2013-04-08 06:07:55
如今Maven的文檔提供了有關[開發插件(HTTP有用的信息來完成://行家.apache.org/guides/plugin/guide-java-plugin-development.html)─其中包含[Mojo原型]部分(http://maven.apache.org/guides/plugin/guide-java-plugin- development.html#Mojo_archetype)。它也值得關於[構建生命週期](https://maven.apache.org/guides/introduction/introduction-to-the-lifecycle.html),以便將您的插件的目標綁定到正確的生命週期階段, 。 – 2015-10-20 13:59:43