3f45894a9e359f7b1e7027bbb4dc123b969f3b96
[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 <dependency>
81 <groupId>commons-dbcp</groupId>
82 <artifactId>commons-dbcp</artifactId>
83 <version>1.4</version>
84 </dependency>
85 <dependency>
86 <!-- needed to make eu.etaxonomy.cdm.database.LocalH2 available -->
87 <groupId>eu.etaxonomy</groupId>
88 <artifactId>cdmlib-persistence</artifactId>
89 <version>${project.version}</version>
90 </dependency>
91 <dependency>
92 <groupId>log4j</groupId>
93 <artifactId>log4j</artifactId>
94 <version>1.2.17</version>
95 </dependency>
96 </dependencies>
97 <configuration>
98 <jvmArgs>-Xmx512m -XX:MaxPermSize=512m</jvmArgs>
99 <useTestScope>true</useTestScope>
100 <systemProperties>
101 <force>true</force>
102 <systemProperty>
103 <!--
104 The lucene index should be placed into the target folder,
105 so user.home needs to be set to this folder.
106 user.home needs to be overridden since it already
107 exists, thus the force option is turned on above
108 -->
109 <name>user.home</name>
110 <value>${basedir}/target/</value>
111 </systemProperty>
112 <systemProperty>
113 <name>spring.profiles.active</name>
114 <value>remoting</value>
115 </systemProperty>
116 <systemProperty>
117 <name>cdm.beanDefinitionFile</name>
118 <value>${basedir}/src/test/resources/datasources.xml</value>
119 </systemProperty>
120 <systemProperty>
121 <name>cdm.datasource</name>
122 <value>cdmTest</value>
123 </systemProperty>
124 </systemProperties>
125 <stopPort>9191</stopPort>
126 <stopKey>jetty-cdm-server</stopKey>
127 <stopWait>10</stopWait>
128 <httpConnector>
129 <port>9090</port>
130 </httpConnector>
131 <!--
132 ${project.parent.basedir} can not be used due to the bug
133 https://issues.apache.org/jira/browse/MNG-5522
134 as long as this is unfixed we replace it by
135 ${basedir}/../
136 -->
137 <war>${basedir}/../eu.etaxonomy.taxeditor.cdmlib/src/main/resources/etc/jetty/cdmlib-remote-webapp.war</war>
138 <daemon>true</daemon>
139 </configuration>
140 <executions>
141 <execution>
142 <id>start-jetty</id>
143 <phase>pre-integration-test</phase>
144 <goals>
145 <goal>deploy-war</goal>
146 </goals>
147 <configuration>
148 <scanIntervalSeconds>0</scanIntervalSeconds>
149 </configuration>
150 </execution>
151 <execution>
152 <id>stop-jetty</id>
153 <phase>post-integration-test</phase>
154 <goals>
155 <goal>stop</goal>
156 </goals>
157 </execution>
158 </executions>
159 </plugin>
160 </plugins>
161 </build>
162 </project>