是否可以使用tycho-surefire-plugin指定不同的JVM来运行Eclipse

时间:2013-07-24 07:31:05

标签: eclipse maven tycho tycho-surefire-plugin

我们有一个用Tycho 0.15.0构建的项目。 运行测试(即UI测试)时,maven执行

cmd.exe /X /C ""C:\Program Files (x86)\Java\jre7\bin\java.exe" -Dosgi.noShutdown=false -Dosgi.os=win32 [...]"

到目前为止这是有效的。

但是现在,我们希望测试实例使用不同的JVM运行(例如,位于c:\my_custom_jvm\jre\bin)。

这有可能实现吗?我已经搜索了可能性,并找到了Maven Surefire插件的jvm选项,但这似乎没有被tycho-surefire支持......

作为参考,这是pom.xml的完整片段:

<build>
<plugins>
    <plugin>
        <groupId>org.eclipse.tycho</groupId>
        <artifactId>tycho-surefire-plugin</artifactId>
        <version>0.15.0</version>
        <configuration>
            <testSuite>my.tests</testSuite>
            <testClass>my.tests.AllTests</testClass>

            <product>my.product</product>
            <bundleStartLevel>
                <bundle>
                    <id>org.eclipse.equinox.event</id>
                    <level>4</level>
                    <autoStart>true</autoStart>
                </bundle>
            </bundleStartLevel>
            <dependencies>
                <dependency>
                    <type>p2-installable-unit</type>
                    <artifactId>my.product</artifactId>
                    <version>0.0.0</version>
                </dependency>
            </dependencies>

            <argLine>-Xmx768m -XX:PermSize=128m -Xss1m -Dosgi.framework.extensions=org.eclipse.equinox.weaving.hook -Dequinox.ds.block_timeout=60000 -Dequinox.use.ds=true</argLine>
        </configuration>
    </plugin>
</plugins>
</build>

2 个答案:

答案 0 :(得分:2)

tycho surefire支持maven工具链[1]

[1] http://maven.apache.org/guides/mini/guide-using-toolchains.html

答案 1 :(得分:1)

(根据jsievers的回答)

工具链插件完全符合我的需要。

我将以下行添加到我的pom.xml(标记内):

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-toolchains-plugin</artifactId>
<version>1.0</version>
<executions>
  <execution>
    <phase>validate</phase>
    <goals>
      <goal>toolchain</goal>
    </goals>
  </execution>
</executions>
<configuration>
  <toolchains>
    <jdk>
      <version>1.4</version>
      <vendor>sun</vendor>
    </jdk>
  </toolchains>
</configuration>
</plugin>

我已经在toolchain.xml中创建了一个C:\Users\itsame\.m2文件(如果您希望将其置于其他地方,可能会this帮助),请使用以下内容:

<?xml version="1.0" encoding="UTF8"?>
<toolchains>
  <toolchain>
     <type>jdk</type>
     <provides>
         <version>1.4</version>
         <vendor>sun</vendor>
         <id>CustomJRE</id>
     </provides>
     <configuration>
        <jdkHome>c:\my_custom_jvm\jre</jdkHome>
     </configuration>
  </toolchain>
</toolchains>

请注意,即使它是JRE(不是JDK),也可以运行测试。