add the nameDetails configuration
[taxeditor.git] / eu.etaxonomy.taxeditor.test / pom.xml
index 5b2e79b899cafa78ab8261f06b908e693ad1f49c..19f896ffdc5cb0a97d385af56c2a16611942c913 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.4.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 UI tests for the Taxonomic Editor</description>\r
-<!--   <build> -->\r
-<!--           <plugins> -->\r
-<!--                   <plugin> -->\r
-<!--                           <groupId>org.eclipse.tycho</groupId> -->\r
-<!--                           <artifactId>tycho-maven-plugin</artifactId> -->\r
-<!--                           <version>${tycho.version}</version> -->\r
-<!--                           <extensions>true</extensions> -->\r
-<!--                   </plugin> -->\r
-<!--                   <plugin> -->\r
-<!--                           <groupId>org.eclipse.tycho</groupId> -->\r
-<!--                           <artifactId>target-platform-configuration</artifactId> -->\r
-<!--                           <version>${tycho.version}</version> -->\r
-<!--                           <configuration> -->\r
-<!--                                   <resolver>p2</resolver> -->\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
-<!--                                   <useUIHarness>true</useUIHarness> -->\r
-<!--                                   <useUIThread>false</useUIThread> -->\r
-<!--                                   <includes> -->\r
-<!--                                           <include>**/*Test.java</include> -->\r
-<!--                                   </includes> -->\r
-<!--                                   <product>eu.etaxonomy.taxeditor.application.eu_etaxonomy_taxeditor_product -->\r
-<!--                                   </product> -->\r
-<!--                                   <application>eu.etaxonomy.taxeditor.application.application -->\r
-<!--                                   </application> -->\r
-<!--                                   <dependency> <type>p2-installable-unit</type> <artifactId>eu.etaxonomy.taxeditor.product</artifactId> -->\r
-<!--                                           <version>0.0.0</version> </dependency> --> \r
-<!--                           </configuration> -->\r
-<!--                   </plugin> -->\r
-<!--           </plugins> -->\r
-<!--   </build> -->\r
-       <dependencies>\r
-               <dependency>\r
-                       <groupId>junit</groupId>\r
-                       <artifactId>junit</artifactId>\r
-                       <version>4.11</version>\r
-                       <scope>test</scope>\r
-               </dependency>\r
-       </dependencies>\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.4.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