1

我正在尝试使用 Tycho 构建 eclipse 插件,尽管我们使用的是 maven,但我们的项目结构与标准的 tycho/maven 结构有点不同。(由于公司标准)

项目结构如下图:

com.test.plugin
|
------ build
-------|
-------------plugin-artifacts
-------------|classes  //compiled classes
-------------|META-INF

//here folder structure is bit different, pom.xml inside build directory
will take care of generating plugin-artifacts.

所以我的问题是,是否可以指定 tychobuild/plugin-artifacts作为根目录生成插件 jar 文件,而不是com.test.plugin作为根目录?

我正在按照Lars Vogel 的教程学习 tycho 插件。

4

1 回答 1

2

Tycho 不允许配置 OSGi 清单的位置。它总是必须META-INF/MANIFEST.MF相对于pom.xml文件。

不过,大多数其他输入和输出文件夹都是可配置的,因此您可以简单地放置pom.xmlat ,并在(与 位于同一文件夹中)和 POMcom.test.plugin/build/plugin-artifacts中配置路径。build.propertiespom.xml

于 2013-07-12T08:14:03.240 回答