本文介绍了如何使用maven构建Eclipse插件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何使用Maven构建Eclipse插件?我需要什么依赖或插件?我正在寻找开发Eclipse 3.7。

How do you build an Eclipse plugin with Maven? What dependencies or plugins do I need? I am looking to develop for Eclipse 3.7.

推荐答案

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

You can use Maven 3.3 (at least) and Maven Tycho 0.24.0. Add this to your project's .mvn/extensions.xml:

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

然后,您必须根据项目的结构定义您的pom.xml。
我推荐这篇文章:

Then you must define your pom.xml according to the structure of your project.I recommend this article: Eclipse Tycho for building Eclipse Plug-ins, OSGi bundles and RCP applications - Tutorial

您可以按照此页面上的示例了解如何使用maven插件Tycho。

You can follow the example on this page to have a general idea of using maven plugin Tycho.

这篇关于如何使用maven构建Eclipse插件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-22 07:03
查看更多