是否可以在没有重建应用程序的情况下仅使用tycho surefire运行junit插件测试。 更多信息 我们有2个jenkins工作。
我试过" mvn org.eclipse.tycho:tycho-surefire-plugin:1.0.0:test" 但失败了: [错误]无法在项目com.somename.studio.template.tests上执行目标org.eclipse.tycho:tycho-surefire-plugin:1.0.0:test(default-cli):目标org.e的执行default-cli clipse.tycho:tycho-surefire-plugin:1.0.0:测试失败:没有为MavenProject配置Tycho构建扩展:com.somename.studio:com.somename.studio.template.tests:1.0.0-SNAPSH OT @ C:\ GIT \ somename \ tests \ junit \ com.somename.studio.template.tests.polyglot.build.properties - > [帮助1]
由于
答案 0 :(得分:0)
由于tycho正确使用maven生命周期,因此不应在测试项目中使用mvn org.eclipse.tycho:tycho-surefire-plugin:1.0.0:test
而只需使用mvn test
。