alagarde | b81a14e | 2011-09-09 16:37:29 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
| 2 | <!--
|
| 3 | Copyright (C) 2011 Obeo
|
| 4 |
|
| 5 | Cedric Brun <cedric.brun@obeo.fr>
|
| 6 | -->
|
| 7 |
|
| 8 | <project xmlns="http://maven.apache.org/POM/4.0.0"
|
| 9 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
| 10 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
| 11 | <modelVersion>4.0.0</modelVersion>
|
| 12 |
|
| 13 | <parent>
|
alagarde | f77812b | 2011-11-29 09:39:51 +0100 | [diff] [blame^] | 14 | <groupId>org.eclipse.mylyn.docs.intent-group</groupId>
|
alagarde | b81a14e | 2011-09-09 16:37:29 +0200 | [diff] [blame] | 15 | <artifactId>intent-parent</artifactId>
|
| 16 | <version>0.7.0-SNAPSHOT</version>
|
| 17 | <relativePath>../..</relativePath>
|
| 18 | </parent>
|
| 19 |
|
| 20 | <artifactId>org.eclipse.mylyn.docs.intent.client.ui.test</artifactId>
|
| 21 | <packaging>eclipse-test-plugin</packaging>
|
| 22 |
|
| 23 | <build>
|
| 24 | <plugins>
|
| 25 | <plugin>
|
| 26 | <groupId>org.eclipse.tycho</groupId>
|
| 27 | <artifactId>tycho-source-plugin</artifactId>
|
| 28 | </plugin>
|
| 29 |
|
| 30 | <plugin>
|
| 31 | <groupId>org.eclipse.tycho</groupId>
|
| 32 | <artifactId>tycho-surefire-plugin</artifactId>
|
| 33 | <version>${tycho-version}</version>
|
| 34 | <configuration>
|
| 35 | <includes>
|
| 36 | <include>org/eclipse/mylyn/docs/intent/client/ui/test/suite/UITestSuite.class</include>
|
| 37 | </includes>
|
| 38 | <useUIHarness>true</useUIHarness>
|
| 39 | <useUIThread>true</useUIThread>
|
alagarde | b81a14e | 2011-09-09 16:37:29 +0200 | [diff] [blame] | 40 | <argLine>-Xms200m</argLine>
|
alagarde | 69a2400 | 2011-09-13 10:26:11 +0200 | [diff] [blame] | 41 | <argLine>-Xmx1024m</argLine>
|
alagarde | 7fe7e5e | 2011-09-30 17:32:05 +0200 | [diff] [blame] | 42 | <argLine>-XX:MaxPermSize=512m</argLine>
|
alagarde | b81a14e | 2011-09-09 16:37:29 +0200 | [diff] [blame] | 43 | <testIgnoreFailure>true</testIgnoreFailure>
|
| 44 | <testFailureIgnore>true</testFailureIgnore>
|
| 45 |
|
| 46 | </configuration>
|
| 47 | </plugin>
|
| 48 |
|
| 49 | </plugins>
|
| 50 | </build>
|
| 51 |
|
| 52 |
|
| 53 |
|
| 54 | </project>
|