8

我有一个依赖于它的实现包和片段包(清单中的片段主机)。此外,还有一个包含一些测试的捆绑包。

现在我想测试我的实现并使用 tycho-surefire-plugin。带有测试的bundle 是通过MANIFEST 中的Require-Bundle 引用实现的bundle。到现在为止还挺好。问题是如何将片段包放入测试运行时?我已经在我的 eclipse-test-plugin 中尝试了 tycho-surefire-plugin 配置中的依赖关系。但它不起作用。什么是正确的方法?

编辑:我的测试插件的 pom.xml

    <plugin>
     <groupId>org.eclipse.tycho</groupId>
     <artifactId>tycho-surefire-plugin</artifactId>
     <version>${tycho-version}</version>
     <configuration>
      <testSuite>com.example.impl.tests</testSuite>
      <testClass>com.example.impl.tests.MyTest</testClass>
      <dependencies>
       <dependency>
       <type>eclipse-plugin</type>
       <artifactId>com.example.impl.config</artifactId>
       <version>1.0.0</version>
      </dependency>         
    </dependencies>
    </configuration>
    </plugin>

片段包的清单:

    Manifest-Version: 1.0
    Bundle-ManifestVersion: 2
    Bundle-Name: com.example.config
    Bundle-SymbolicName: com.example.config
    Bundle-Version: 1.0.0.qualifier
    Bundle-Vendor: example
    Fragment-Host: com.example.impl;bundle-version="1.0.0.qualifier"
    Bundle-ClassPath: resources/
    Bundle-RequiredExecutionEnvironment: JavaSE-1.7

从反应堆 pom.xml 中提取:

    <modules>
     <module>../com.example.impl</module> 
     <module>../com.example.impl.config</module>
     <module>../com.example.impl.tests</module>
    </module>

谢谢!

4

1 回答 1

8

它接缝我自己找到了答案。如果有人遇到同样的问题:Tycho 不会自动扩展 Fragment-Host bundle-version 中的 .qualifier 版本。

于 2012-11-28T06:39:54.217 回答