1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
<project>
|
3
|
|
4
|
<parent>
|
5
|
<groupId>eu.etaxonomy</groupId>
|
6
|
<artifactId>taxeditor-parent</artifactId>
|
7
|
<version>3.0.9-SNAPSHOT</version>
|
8
|
</parent>
|
9
|
<modelVersion>4.0.0</modelVersion>
|
10
|
<artifactId>eu.etaxonomy.taxeditor.test</artifactId>
|
11
|
<packaging>eclipse-test-plugin</packaging>
|
12
|
<name>UI Test Bundle</name>
|
13
|
<description>Holds all UI tests for the Taxonomic Editor</description>
|
14
|
<!-- <repositories> -->
|
15
|
<!-- <repository> -->
|
16
|
<!-- <id>ganymede</id> -->
|
17
|
<!-- <layout>p2</layout> -->
|
18
|
<!-- <url>http://download.eclipse.org/releases/galileo</url> -->
|
19
|
<!-- </repository> -->
|
20
|
<!-- <repository> -->
|
21
|
<!-- <id>swtbot</id> -->
|
22
|
<!-- <layout>p2</layout> -->
|
23
|
<!-- <url>http://download.eclipse.org/technology/swtbot/galileo/dev-build/update-site</url> -->
|
24
|
<!-- </repository> -->
|
25
|
<!-- </repositories> -->
|
26
|
|
27
|
<build>
|
28
|
<plugins>
|
29
|
<plugin>
|
30
|
<groupId>org.eclipse.tycho</groupId>
|
31
|
<artifactId>tycho-maven-plugin</artifactId>
|
32
|
<version>${tycho.version}</version>
|
33
|
<extensions>true</extensions>
|
34
|
</plugin>
|
35
|
<plugin>
|
36
|
<groupId>org.eclipse.tycho</groupId>
|
37
|
<artifactId>target-platform-configuration</artifactId>
|
38
|
<version>${tycho.version}</version>
|
39
|
<configuration>
|
40
|
<resolver>p2</resolver>
|
41
|
</configuration>
|
42
|
</plugin>
|
43
|
<plugin>
|
44
|
<groupId>org.eclipse.tycho</groupId>
|
45
|
<artifactId>tycho-surefire-plugin</artifactId>
|
46
|
<version>${tycho.version}</version>
|
47
|
<configuration>
|
48
|
<useUIHarness>true</useUIHarness>
|
49
|
<useUIThread>false</useUIThread>
|
50
|
<includes>
|
51
|
<include>**/*Test.java</include>
|
52
|
</includes>
|
53
|
<product>eu.etaxonomy.taxeditor.application.eu_etaxonomy_taxeditor_product</product>
|
54
|
<application>eu.etaxonomy.taxeditor.application.application</application>
|
55
|
<!-- <dependency>
|
56
|
<type>p2-installable-unit</type>
|
57
|
<artifactId>eu.etaxonomy.taxeditor.product</artifactId>
|
58
|
<version>0.0.0</version>
|
59
|
</dependency> -->
|
60
|
</configuration>
|
61
|
</plugin>
|
62
|
<!-- <plugin>
|
63
|
<groupId>org.eclipse.tycho</groupId>
|
64
|
<artifactId>maven-osgi-test-plugin</artifactId>
|
65
|
<version>${tycho.version}</version>
|
66
|
<configuration>
|
67
|
<useUIHarness>true</useUIHarness>
|
68
|
<useUIThread>false</useUIThread>
|
69
|
<product>eu.etaxonomy.taxeditor.application.eu_etaxonomy_taxeditor_product</product>
|
70
|
<application>org.eclipse.ui.ide.workbench</application>
|
71
|
<dependencies>
|
72
|
<dependency>
|
73
|
<type>p2-installable-unit</type>
|
74
|
<artifactId>eu.etaxonomy.taxeditor.application.eu_etaxonomy_taxeditor_product</artifactId>
|
75
|
<version>0.0.0</version>
|
76
|
</dependency>
|
77
|
</dependencies>
|
78
|
</configuration>
|
79
|
</plugin> -->
|
80
|
</plugins>
|
81
|
</build>
|
82
|
</project>
|