Tycho无法解析对其他片段的片段依赖性

时间:2013-08-11 11:11:23

标签: maven osgi tycho osgi-fragment

我想为org.eclipse.swt创建一个扩展名作为片段。我使用以下MANIFEST.MF创建了一个包swt.extension

Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Extension
Bundle-SymbolicName: swt.extension
Bundle-Version: 1.0.0.qualifier
Fragment-Host: org.eclipse.swt;bundle-version="3.102.0"
Bundle-RequiredExecutionEnvironment: JavaSE-1.7

另外,我创建了一个从SWT扩展接口的接口:

public interface IExtendedStyleTextContent extends org.eclipse.swt.custom.StyledTextContent {
}

当我使用tycho(mvn clean install)构建项目时,会发生以下错误:

1. ERROR in C:\<path>\tycho-fragment-to-fragment-dependency\swt.extension\src\org\example\tycho_example\IExtendedStyleTextContent.java (at line 3)

public interface IExtendedStyleTextContent extends org.eclipse.swt.custom.StyledTextContent {

                                                   ^^^^^^^^^^^

org.eclipse cannot be resolved to a type

似乎tycho只解析了org.eclipse.swt jar。这是一个主机包,它不包含任何类。实际的实现是在org.eclipse.swt.win32.win32.x86_64片段包中。当tycho-compiler-plugin编译项目时,看起来这个包不在类路径上。

这是第谷的错误吗?他们有任何变通方法吗?

我已将所有资源都放在GitHub上:https://github.com/orionll/tycho-fragment-to-fragment-dependency

我使用maven 3.1.0

2 个答案:

答案 0 :(得分:5)

因此,在邮件列表中找到了此问题的解决方法:http://dev.eclipse.org/mhonarc/lists/tycho-user/msg03277.html

要解决此问题,应将以下部分添加到POM和build.properties:

<build>
  <plugins>
    <plugin>
      <groupId>org.eclipse.tycho</groupId>
      <artifactId>target-platform-configuration</artifactId>
      <version>${tycho-version}</version>
      <configuration>
        <dependency-resolution>
          <extraRequirements>
            <requirement>
              <type>eclipse-plugin</type>
              <id>org.eclipse.swt.win32.win32.x86_64</id>
              <versionRange>[3.0.0,4.0.0)</versionRange>
            </requirement>
          </extraRequirements>
        </dependency-resolution>
      </configuration>
    </plugin>
  </plugins>
</build>

build.properties:

extra.. = platform:/fragment/org.eclipse.swt.win32.win32.x86_64

我还更新了GitHub存储库

答案 1 :(得分:4)

这不是一个错误,而是PDE / Tycho设计的一个基本问题:构建依赖关系尽可能保持与运行时依赖关系。在这种情况下,您需要添加一个在运行时没有相应依赖关系的构建依赖项,因此无法通过OSGi清单声明。

以下邮件列表消息似乎为此问题提供了解决方法:http://dev.eclipse.org/mhonarc/lists/tycho-user/msg03277.html