2011-07-26 164 views
20

你如何用Maven構建一個Eclipse插件?我需要哪些依賴或插件?我期待爲Eclipse 3.7開發。如何使用maven構建Eclipse插件?

+0

也許過時了,但http://www.eclipse.org/articles/article.php?file=Article-Eclipse-and-Maven2/index.html可能會提供一些提示 – Raghuram

+1

您應該看看Tycho項目這是使用Maven構建Eclipse插件的方法:http://www.eclipse.org/tycho/ – greydet

回答

2

您可以使用Maven 3.3(至少)和Maven Tycho 0.24.0。添加到您的項目.mvn/extensions.xml

<extensions> 
    <extension> 
    <groupId>org.eclipse.tycho.extras</groupId> 
    <artifactId>tycho-pomless</artifactId> 
    <version>0.26.0</version> 
    </extension> 
</extensions> 

然後,你必須根據你的項目的結構定義你的pom.xml。 我推薦這篇文章:Eclipse Tycho for building Eclipse Plug-ins, OSGi bundles and RCP applications - Tutorial

你可以按照這個頁面上的例子有一個使用maven插件Tycho的一般想法。

+0

我遇到了與提問者相同的問題。文章中提出的解決方案非常完美。 –

+0

更新的答案至少提供了比原始更多的上下文 – engineersmnky