Eclipse Tycho更改默认源位置

时间:2013-07-12 04:23:39

标签: eclipse eclipse-plugin tycho

我正在尝试使用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.

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

我正在关注Lars Vogel's教程学习tycho插件。

1 个答案:

答案 0 :(得分:2)

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

大多数其他输入和输出文件夹都是可配置的,因此您只需将pom.xml放在com.test.plugin/build/plugin-artifacts,然后配置build.properties中的路径(位于与{1}}相同的文件夹中pom.xml)和POM。