ad86d6ceb99c3427702cce191fee18d614444ae1
[taxeditor.git] / eu.etaxonomy.taxeditor.test / pom.xml
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.13.0-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 Tests for the Taxonomic Editor</description>
14 <build>
15 <plugins>
16 <plugin>
17 <groupId>org.eclipse.tycho</groupId>
18 <artifactId>target-platform-configuration</artifactId>
19 <version>${tycho.version}</version>
20 <configuration>
21 <filters>
22 <!-- Work around for https://bugs.eclipse.org/bugs/show_bug.cgi?id=348045 -->
23 <!-- taken from https://wiki.eclipse.org/index.php?title=Tycho/Target_Platform#Filtering -->
24 <filter>
25 <type>p2-installable-unit</type>
26 <id>org.eclipse.equinox.servletbridge.extensionbundle</id>
27 <removeAll />
28 </filter>
29 </filters>
30 </configuration>
31 </plugin>
32 <plugin>
33 <groupId>org.eclipse.tycho</groupId>
34 <artifactId>tycho-surefire-plugin</artifactId>
35 <version>${tycho.version}</version>
36 <configuration>
37 <!-- currently we run only the non-ui unit tests so we don't the
38 harness -->
39 <!-- <useUIHarness>true</useUIHarness> -->
40 <dependencies>
41 <!-- This will pull the feature and its dependent plugins into
42 the classpath for the tests. Note that this requires ALL taxeditor projects
43 to be installed. -->
44 <dependency>
45 <type>eclipse-feature</type>
46 <artifactId>eu.etaxonomy.taxeditor.feature</artifactId>
47 <!-- This is the minimum required version -->
48 <version>1.0.0</version>
49 </dependency>
50 </dependencies>
51 </configuration>
52 </plugin>
53 <plugin>
54 <groupId>org.eclipse.jetty</groupId>
55 <artifactId>jetty-maven-plugin</artifactId>
56 <version>9.2.9.v20150224</version>
57 <dependencies>
58 <dependency>
59 <groupId>com.mchange</groupId>
60 <artifactId>c3p0</artifactId>
61 <!--
62 IMPORTANT!!!
63 this must exactly match the version as set in
64 cdmlib-parent pom.xml otherwise the connection
65 through jndi will not work
66 -->
67 <version>0.9.5.2</version>
68 </dependency>
69 <!-- DATABASE DRIVER -->
70 <dependency>
71 <groupId>com.h2database</groupId>
72 <artifactId>h2</artifactId>
73 <version>1.4.190</version>
74 </dependency>
75 <dependency>
76 <groupId>mysql</groupId>
77 <artifactId>mysql-connector-java</artifactId>
78 <version>5.1.38</version>
79 </dependency>
80 </dependencies>
81 <configuration>
82 <jvmArgs>-Xmx512m -XX:MaxPermSize=512m</jvmArgs>
83 <systemProperties>
84 <force>true</force>
85 <systemProperty>
86 <!--
87 The lucene index should be placed into the target folder,
88 so user.home needs to be set to this folder.
89 user.home needs to be overridden since it already
90 exists, thus the force option is turned on above
91 -->
92 <name>user.home</name>
93 <value>${basedir}/target/</value>
94 </systemProperty>
95 <systemProperty>
96 <name>spring.profiles.active</name>
97 <value>remoting</value>
98 </systemProperty>
99 <systemProperty>
100 <name>cdm.beanDefinitionFile</name>
101 <value>${basedir}/src/test/resources/datasources.xml</value>
102 </systemProperty>
103 <systemProperty>
104 <name>cdm.datasource</name>
105 <value>cdmTest</value>
106 </systemProperty>
107 </systemProperties>
108 <stopPort>9191</stopPort>
109 <stopKey>jetty-cdm-server</stopKey>
110 <stopWait>10</stopWait>
111 <httpConnector>
112 <port>9090</port>
113 </httpConnector>
114 <war>${project.parent.basedir}/eu.etaxonomy.taxeditor.cdmlib/src/main/resources/etc/jetty/cdmlib-remote-webapp.war</war>
115 <daemon>true</daemon>
116 </configuration>
117 <executions>
118 <execution>
119 <id>start-jetty</id>
120 <phase>pre-integration-test</phase>
121 <goals>
122 <goal>deploy-war</goal>
123 </goals>
124 <configuration>
125 <scanIntervalSeconds>0</scanIntervalSeconds>
126 </configuration>
127 </execution>
128 <execution>
129 <id>stop-jetty</id>
130 <phase>post-integration-test</phase>
131 <goals>
132 <goal>stop</goal>
133 </goals>
134 </execution>
135 </executions>
136 </plugin>
137 </plugins>
138 </build>
139 </project>