Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorspingel2011-01-21 05:13:49 +0000
committerspingel2011-01-21 05:13:49 +0000
commit3112263906cc16be5101192ba7c422634e6a37ac (patch)
treeb2a68d7ddf2e0a49c0f1098ae23acef02345091e /org.eclipse.mylyn.tests.performance
parent5df92d1352d90db44f41719863a4bb04e6f8f3b7 (diff)
downloadorg.eclipse.mylyn.incubator-3112263906cc16be5101192ba7c422634e6a37ac.tar.gz
org.eclipse.mylyn.incubator-3112263906cc16be5101192ba7c422634e6a37ac.tar.xz
org.eclipse.mylyn.incubator-3112263906cc16be5101192ba7c422634e6a37ac.zip
bug 330155: [releng] modularize Mylyn build
https://bugs.eclipse.org/bugs/show_bug.cgi?id=330155
Diffstat (limited to 'org.eclipse.mylyn.tests.performance')
-rw-r--r--org.eclipse.mylyn.tests.performance/pom.xml17
1 files changed, 16 insertions, 1 deletions
diff --git a/org.eclipse.mylyn.tests.performance/pom.xml b/org.eclipse.mylyn.tests.performance/pom.xml
index 42ff4192..36a48100 100644
--- a/org.eclipse.mylyn.tests.performance/pom.xml
+++ b/org.eclipse.mylyn.tests.performance/pom.xml
@@ -10,10 +10,25 @@
<groupId>org.eclipse.mylyn</groupId>
<artifactId>org.eclipse.mylyn.tests.performance</artifactId>
<version>3.5.0-SNAPSHOT</version>
- <packaging>eclipse-plugin</packaging>
+ <packaging>eclipse-test-plugin</packaging>
+ <properties>
+ <mylyn-performance-test-suite>org.eclipse.mylyn.tests.performance.AllPerformanceTests</mylyn-performance--test-suite>
+ </properties>
<build>
<plugins>
<plugin>
+ <groupId>org.sonatype.tycho</groupId>
+ <artifactId>maven-osgi-test-plugin</artifactId>
+ <version>${tycho-version}</version>
+ <configuration>
+ <useUIHarness>true</useUIHarness>
+ <forkedProcessTimeoutInSeconds>7200</forkedProcessTimeoutInSeconds>
+ <testSuite>org.eclipse.mylyn.tests.performance</testSuite>
+ <testClass>${mylyn-test-suite}</testClass>
+ <argLine>-Xmx1024m -XX:MaxPermSize=256m -Djava.io.tmpdir=${project.build.directory}</argLine>
+ </configuration>
+ </plugin>
+ <plugin>
<groupId>org.sonatype.tycho</groupId>
<artifactId>maven-osgi-source-plugin</artifactId>
</plugin>

Back to the top