#5751 Try to fix dependency copy in taxeditor.wepapp (VII)
[taxeditor.git] / eu.etaxonomy.taxeditor.test / pom.xml
index ab19000d4ae914f01168b0fabda861231929473a..88d885b85f2d254e7ab774efadd310f950189b27 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>\r
-<project>\r
-\r
-  <parent>\r
-    <groupId>eu.etaxonomy</groupId>\r
-    <artifactId>taxeditor-parent</artifactId>\r
-    <version>3.12.0-SNAPSHOT</version>\r
-  </parent>\r
-  <modelVersion>4.0.0</modelVersion>\r
-  <artifactId>eu.etaxonomy.taxeditor.test</artifactId>\r
-  <packaging>eclipse-test-plugin</packaging>\r
-  <name>UI Test Bundle</name>\r
-  <description>Holds all Tests for the Taxonomic Editor</description>\r
-  <build>\r
-    <plugins>\r
-      <plugin>\r
-        <groupId>org.eclipse.tycho</groupId>\r
-        <artifactId>target-platform-configuration</artifactId>\r
-        <version>${tycho.version}</version>\r
-        <configuration>\r
-          <filters>\r
-            <!-- Work around for https://bugs.eclipse.org/bugs/show_bug.cgi?id=348045 -->\r
-            <!-- taken from https://wiki.eclipse.org/index.php?title=Tycho/Target_Platform#Filtering -->\r
-            <filter>\r
-              <type>p2-installable-unit</type>\r
-              <id>org.eclipse.equinox.servletbridge.extensionbundle</id>\r
-              <removeAll />\r
-            </filter>\r
-          </filters>\r
-        </configuration>\r
-      </plugin>\r
-      <plugin>\r
-        <groupId>org.eclipse.tycho</groupId>\r
-        <artifactId>tycho-surefire-plugin</artifactId>\r
-        <version>${tycho.version}</version>\r
-        <configuration>\r
-          <!-- currently we run only the non-ui unit tests so we don't the \r
-            harness -->\r
-          <!-- <useUIHarness>true</useUIHarness> -->\r
-          <dependencies>\r
-            <!-- This will pull the feature and its dependent plugins into \r
-              the classpath for the tests. Note that this requires ALL taxeditor projects \r
-              to be installed. -->\r
-            <dependency>\r
-              <type>eclipse-feature</type>\r
-              <artifactId>eu.etaxonomy.taxeditor.feature</artifactId>\r
-              <!-- This is the minimum required version -->\r
-              <version>1.0.0</version>\r
-            </dependency>\r
-          </dependencies>\r
-        </configuration>\r
-      </plugin>\r
-      <plugin>\r
-        <groupId>org.eclipse.jetty</groupId>\r
-        <artifactId>jetty-maven-plugin</artifactId>\r
-        <version>9.2.9.v20150224</version>\r
-        <configuration>\r
-          <jvmArgs>-Xmx512m -XX:MaxPermSize=512m</jvmArgs>\r
-          <systemProperties>\r
-            <systemProperty>\r
-              <name>spring.profiles.active</name>\r
-              <value>remoting</value>\r
-            </systemProperty>\r
-            <systemProperty>\r
-              <name>cdm.beanDefinitionFile</name>\r
-              <value>${basedir}/src/test/resources/datasources.xml</value>\r
-            </systemProperty>\r
-            <systemProperty>\r
-              <name>cdm.datasource</name>\r
-              <value>cdmTest</value>\r
-            </systemProperty>\r
-          </systemProperties>\r
-          <stopPort>9191</stopPort>\r
-          <stopKey>jetty-cdm-server</stopKey>\r
-          <stopWait>10</stopWait>\r
-          <httpConnector>\r
-            <port>9090</port>\r
-          </httpConnector>\r
-          <war>${project.parent.basedir}/eu.etaxonomy.taxeditor.cdmlib/src/main/resources/etc/jetty/cdmlib-remote-webapp.war</war>\r
-          <daemon>true</daemon>\r
-        </configuration>\r
-        <executions>\r
-          <execution>\r
-            <id>start-jetty</id>\r
-            <phase>pre-integration-test</phase>\r
-            <goals>\r
-              <goal>deploy-war</goal>\r
-            </goals>\r
-            <configuration>\r
-              <scanIntervalSeconds>0</scanIntervalSeconds>\r
-            </configuration>\r
-          </execution>\r
-          <execution>\r
-            <id>stop-jetty</id>\r
-            <phase>post-integration-test</phase>\r
-            <goals>\r
-              <goal>stop</goal>\r
-            </goals>\r
-          </execution>\r
-        </executions>\r
-      </plugin>\r
-    </plugins>\r
-  </build>\r
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>eu.etaxonomy</groupId>
+    <artifactId>taxeditor-parent</artifactId>
+    <version>4.3.0-SNAPSHOT</version>
+  </parent>
+  <artifactId>eu.etaxonomy.taxeditor.test</artifactId>
+  <packaging>eclipse-test-plugin</packaging>
+  <name>UI Test Bundle</name>
+  <description>Holds all Tests for the Taxonomic Editor</description>
+  <build>
+  <resources>
+      <resource>
+        <!-- replace the place holders like ${...} in datasources.xml -->
+        <filtering>true</filtering>
+        <directory>src/test/resources</directory>
+        <targetPath>../test-classes</targetPath>
+        <includes>
+          <include>datasources.xml</include>
+        </includes>
+      </resource>
+      <resource>
+        <!-- all other test resources without filtering -->
+        <directory>src/test/resources</directory>
+        <targetPath>../test-classes</targetPath>
+        <excludes>
+          <exclude>datasources.xml</exclude>
+        </excludes>
+      </resource>
+      <resource>
+        <!-- all main resources without filtering -->
+        <directory>src/main/resources</directory>
+      </resource>
+    </resources>
+    <plugins>
+      <plugin>
+        <groupId>org.eclipse.tycho</groupId>
+        <artifactId>target-platform-configuration</artifactId>
+        <version>${tycho.version}</version>
+        <configuration>
+          <filters>
+            <!-- Work around for https://bugs.eclipse.org/bugs/show_bug.cgi?id=348045 -->
+            <!-- taken from https://wiki.eclipse.org/index.php?title=Tycho/Target_Platform#Filtering -->
+            <filter>
+              <type>p2-installable-unit</type>
+              <id>org.eclipse.equinox.servletbridge.extensionbundle</id>
+              <removeAll />
+            </filter>
+          </filters>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.eclipse.tycho</groupId>
+        <artifactId>tycho-surefire-plugin</artifactId>
+        <version>${tycho.version}</version>
+        <configuration>
+          <!-- currently we run only the non-ui unit tests so we don't the 
+            harness -->
+          <!-- <useUIHarness>true</useUIHarness> -->
+          <dependencies>
+            <!-- This will pull the feature and its dependent plugins into 
+              the classpath for the tests. Note that this requires ALL taxeditor projects 
+              to be installed. -->
+            <dependency>
+              <type>eclipse-feature</type>
+              <artifactId>eu.etaxonomy.taxeditor.feature</artifactId>
+              <!-- This is the minimum required version -->
+              <version>1.0.0</version>
+            </dependency>
+          </dependencies>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.eclipse.jetty</groupId>
+        <artifactId>jetty-maven-plugin</artifactId>
+        <version>9.1.3.v20140225</version><!-- do not update, since later versions are no longer compatible to java 7  -->
+        <!-- 
+            To see the detailed list of parameters that can be configured for a particular goal:
+            mvn jetty:help -Ddetail=true -Dgoal= goal-name
+         -->
+        <configuration>
+          <systemProperties>
+            <force>true</force>
+            <systemProperty>
+              <name>cdm.datasource</name>
+              <value>cdmTest</value>
+            </systemProperty>
+            <systemProperty>
+              <!-- 
+                The lucene index should be placed into the target folder,
+                so user.home needs to be set to this folder.
+                user.home needs to be overridden since it already 
+                exists, thus the force option is turned on above 
+              -->
+              <name>user.home</name>
+              <value>${basedir}/target/</value>
+            </systemProperty> 
+            <systemProperty>
+              <name>spring.profiles.active</name>
+              <value>remoting</value>
+            </systemProperty>
+            <systemProperty>
+              <name>cdm.beanDefinitionFile</name>
+              <value>${basedir}/target/test-classes/datasources.xml</value>
+            </systemProperty>
+          </systemProperties>
+          <stopPort>9191</stopPort>
+          <stopKey>jetty-cdm-server</stopKey>
+          <stopWait>10</stopWait>
+          <httpConnector>
+            <port>9090</port>
+          </httpConnector>
+      <!-- 
+        ${project.parent.basedir} can not be used due to the bug
+        https://issues.apache.org/jira/browse/MNG-5522 
+        as long as this is unfixed we replace it by 
+        ${basedir}/../
+      -->
+          <war>${basedir}/../eu.etaxonomy.taxeditor.cdmlib/src/main/resources/etc/jetty/cdmlib-remote-webapp.war</war>
+          <daemon>true</daemon>
+        </configuration>
+        <dependencies>
+               <dependency>
+                       <groupId>eu.etaxonomy</groupId>
+                       <artifactId>cdmlib-db</artifactId>
+                       <version>${cdmlib.version}</version>
+               </dependency>
+                 <!-- Do we still need this? If yes, should we move it to cdmlib-db? -->
+          <dependency>
+              <groupId>commons-dbcp</groupId>
+              <artifactId>commons-dbcp</artifactId>
+              <version>1.4</version>
+          </dependency>
+        </dependencies>
+        <executions>
+          <execution>
+            <id>start-jetty</id>
+            <phase>pre-integration-test</phase>
+            <goals>
+              <goal>deploy-war</goal>
+            </goals>
+            <configuration>
+              <scanIntervalSeconds>0</scanIntervalSeconds>
+            </configuration>
+          </execution>
+          <execution>
+            <id>stop-jetty</id>
+            <phase>post-integration-test</phase>
+            <goals>
+              <goal>stop</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
 </project>
\ No newline at end of file