Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Faltermeier2017-01-12 12:55:02 +0000
committerJohannes Faltermeier2017-01-12 12:55:02 +0000
commit0bbe181d828057521958663320bb5939f4ea9f9c (patch)
tree92ed9f1ef8f85a8bbfe1d32d11ff4ff4b280d59b
parent6eea627094e72e08d2603334844e9ae6fc1542f2 (diff)
downloadorg.eclipse.emf.edapt-0bbe181d828057521958663320bb5939f4ea9f9c.tar.gz
org.eclipse.emf.edapt-0bbe181d828057521958663320bb5939f4ea9f9c.tar.xz
org.eclipse.emf.edapt-0bbe181d828057521958663320bb5939f4ea9f9c.zip
Bug 469097 - Create basic UI Tests
-rw-r--r--tests/org.eclipse.emf.edapt.rcptt/pom.xml20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/org.eclipse.emf.edapt.rcptt/pom.xml b/tests/org.eclipse.emf.edapt.rcptt/pom.xml
index 6b5baca..3c92ba0 100644
--- a/tests/org.eclipse.emf.edapt.rcptt/pom.xml
+++ b/tests/org.eclipse.emf.edapt.rcptt/pom.xml
@@ -10,6 +10,7 @@
<properties>
<rcptt-maven-version>2.1.0</rcptt-maven-version>
<rcptt-runner-version>2.1.0</rcptt-runner-version>
+ <toolchains-version>1.1</toolchains-version>
</properties>
<pluginRepositories>
@@ -32,6 +33,25 @@
<build>
<plugins>
<plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-toolchains-plugin</artifactId>
+ <version>${toolchains-version}</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>toolchain</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <toolchains>
+ <jdk>
+ <id>JavaSE-1.8</id>
+ </jdk>
+ </toolchains>
+ </configuration>
+ </plugin>
+ <plugin>
<groupId>org.eclipse.rcptt</groupId>
<artifactId>rcptt-maven-plugin</artifactId>
<version>${rcptt-maven-version}</version>

Back to the top