5

我第一次在 Eclipse RCP + Maven 项目上工作,我想用 JUnit 对我的包运行一些单元测试。似乎最推荐的方法是创建一个包片段并使用 Tycho 插件之类的东西来解决依赖关系。但是,当我mvn clean verify在我的主 pom 中运行时,它应该运行测试并部署我的应用程序,但我得到了以下错误:

[ERROR] Cannot resolve project dependencies:
[ERROR]   You requested to install 'myproject.app.feature.feature.group 1.0.0' but it could not be found
[ERROR] Failed to execute goal org.eclipse.tycho:tycho-surefire-plugin:0.21.0:test (default-test) on project myproject.app.viewmanager-test: Execution default-test of goal org.eclipse.tycho:tycho-surefire-plugin:0.21.0:test failed: No solution found because the problem is unsatisfiable.: [Unable to satisfy dependency from tycho-extra-1408913392535 0.0.0.1408913392535 to myproject.app.feature.feature.group 1.0.0.; Unable to satisfy dependency from tycho-1408913392552 0.0.0.1408913392552 to myproject.app.feature.feature.group 1.0.0.; No solution found because the problem is unsatisfiable.] -> [Help 1]

我知道 Maven 找不到“myproject.app.feature.feature.group 1.0.0”,但我不知道它是从哪里得到的,因为它的名称似乎是错误的。

值得一提的是,当我在 Eclipse(而不是 Maven)中运行单元测试时,它可以工作。

这是我的测试片段中的第谷配置:

<plugin>
    <groupId>org.eclipse.tycho</groupId>
    <artifactId>tycho-surefire-plugin</artifactId>
    <version>${tycho-version}</version>
    <configuration>
        <useUIHarness>true</useUIHarness>

        <dependencies>
            <dependency>
                <type>eclipse-feature</type>
                <artifactId>myproject.app.feature</artifactId>
                <version>1.0.0</version>
            </dependency>
        </dependencies>

    </configuration>
</plugin>

正如这里所建议的那样,我将该功能添加为依赖项,因为我的测试片段除了其主机之外还需要一些其他捆绑包,所以我期待它能够工作。

有小费吗?我发现的最相似的问题是这个,但这两种解决方案都对我不起作用。

4

2 回答 2

4

从 Tycho 0.21.0 开始,仅在 tycho-surefire-plugin 中对声明对 reactor 项目的依赖项的支持有限:它们仅在测试项目已经对引用的 reactor 项目具有其他依赖项时才起作用。在您将依赖项添加到功能的用例中,情况并非如此。

可以通过向功能项目添加 POM 依赖项来使 tycho-surefire-plugin 依赖项配置再次工作:

<dependencies>
   <dependency>
      <!-- Maven GAV of the feature project -->
      <groupId>myproject.groupId</groupId>
      <artifactId>myproject.app.feature</artifactId>
      <version>1.0.0-SNAPSHOT</version>
   </dependency>
</dependencies>

<build>
   <plugins>
      <plugin>
         <groupId>org.eclipse.tycho</groupId>
         <artifactId>tycho-surefire-plugin</artifactId>
         <version>${tycho-version}</version>
         <configuration>
            <dependencies>
               <dependency>
                  <type>eclipse-feature</type>
                  <artifactId>myproject.app.feature</artifactId>
                  <version>1.0.0</version>
               </dependency>
            </dependencies>
         </configuration>
      </plugin>
   </plugins>
</build>

但是,指定额外测试依赖项的推荐方法是在目标平台配置中而不是在 tycho-surefire-plugin 中执行此操作:

<plugin>
   <groupId>org.eclipse.tycho</groupId>
   <artifactId>target-platform-configuration</artifactId>
   <configuration>
      <dependency-resolution>
         <extraRequirements>
            <requirement>
               <type>eclipse-feature</type>
               <id>myproject.app.feature</id>
               <versionRange>1.0.0</versionRange>
            </requirement>
         </extraRequirements>
      </dependency-resolution>
   </configuration>
</plugin>

注意:与 tycho-surefire-plugin 相比,target-platform-configuration 中指定依赖项的元素名称不同。因此,在迁移配置时,您需要调整标签名称:

  • <type>(不变)
  • <artifactId><id>
  • <version><versionRange>

备注:虽然标签名称不同,但元素的语义是相同的:所以即使旧名称是<version>,该值始终被解释为版本范围。由单个版本组成的1.0.0版本范围代表没有上限的版本范围,即版本 1.0.0 或更高版本。

于 2014-09-25T12:14:00.143 回答
1

我只是遇到了基本相同的问题。似乎必须使用目标平台配置插件添加 tycho 0.21 依赖项。有关示例,请参见第谷错误 436617 评论 #11

于 2014-08-26T19:33:23.493 回答