Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » RCP Testing Tool » Set workspace or autWsPrefix in pom.xml(how to set aut workspace )
Set workspace or autWsPrefix in pom.xml [message #1747016] Tue, 08 November 2016 15:16
Abhishek Chakraborty is currently offline Abhishek ChakrabortyFriend
Messages: 82
Registered: July 2009
Location: Cologne, Germany
Member

I am trying to set the default workspace path in the pom.xml but it is not getting read by the maven / rcptt runner.

<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion><!-- Change groupId, artifactId and version -->
<artifactId>com.myrcp.rcpttests</artifactId>
<groupId>com.myrcp.product</groupId>
<version>1.0.0-SNAPSHOT</version>
<packaging>rcpttTest</packaging>

<!-- Change properies below to your values -->
<properties>
<autPath>${project.basedir}/../../com.myrcp.product/target/products/com.myrcp.product-[platform].zip
</autPath>
<version-rcptt>2.2.0-SNAPSHOT</version-rcptt>
<target.ws>${user.home}/rcptt_workspace</target.ws>
</properties>

<build>
<plugins>
<plugin>
<groupId>org.eclipse.rcptt</groupId>
<artifactId>rcptt-maven-plugin</artifactId>
<version>${version-rcptt}</version>
<extensions>true</extensions>
<configuration>
<aut>
<explicit>${autPath}</explicit>
<autWsPrefix>${target.ws}</autWsPrefix>
</aut>
<runner>
<version>${version-rcptt}</version>
</runner>
<!-- Configure the timeout information -->
<testOptions>
<execTimeout>30000</execTimeout>
<testExecTimeout>1200</testExecTimeout>
</testOptions>

</configuration>
</plugin>
</plugins>
</build>

<pluginRepositories>

<pluginRepository>
<id>rcptt-snapshots</id>
<name>RCPTT Maven Snapshots repository</name>
<snapshots>
<updatePolicy>always</updatePolicy>
</snapshots>
<url>https://repo.eclipse.org/content/repositories/rcptt-snapshots/
</url>
</pluginRepository>

<pluginRepository>
<id>rcptt-releases</id>
<name>RCPTT Maven repository</name>
<url>https://repo.eclipse.org/content/repositories/rcptt-releases/
</url>
</pluginRepository>
</pluginRepositories>


</project>


Regards,
Abhishek Chakraborty
Previous Topic:Change AUT workspace in POM file using maven plugin
Next Topic:[SOLVED] When I run some test from Jenkins, It opens 2 distinct AUT (Application Under Test)
Goto Forum:
  


Current Time: Wed Apr 24 20:55:59 GMT 2024

Powered by FUDForum. Page generated in 0.03053 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top