bumping eu.etaxonomy.taxeditor.test to version 4.0.0-SNAPSHOT
[taxeditor.git] / eu.etaxonomy.taxeditor.test / pom.xml
index 74148e4823cb7e985fe3e61d0c974177f893c915..3f54ecaed432546c3a718a0cae192e8e23c680c1 100644 (file)
@@ -4,7 +4,7 @@
   <parent>
     <groupId>eu.etaxonomy</groupId>
     <artifactId>taxeditor-parent</artifactId>
-    <version>3.13.0-SNAPSHOT</version>
+    <version>4.0.0-SNAPSHOT</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <artifactId>eu.etaxonomy.taxeditor.test</artifactId>
       <plugin>
         <groupId>org.eclipse.jetty</groupId>
         <artifactId>jetty-maven-plugin</artifactId>
-        <version>9.2.9.v20150224</version>
+        <version>9.1.3.v20140225</version><!-- do not update, since later versions are no longer compatible to java 7  -->
+        <dependencies>
+            <dependency>
+            <groupId>com.mchange</groupId>
+            <artifactId>c3p0</artifactId>
+            <!-- 
+              IMPORTANT!!!
+              this must exactly match the version as set in 
+              cdmlib-parent pom.xml otherwise the connection 
+              through jndi will not work
+            -->
+            <version>0.9.5.2</version>
+          </dependency>
+          <!-- DATABASE DRIVER -->
+          <dependency>
+            <groupId>com.h2database</groupId>
+            <artifactId>h2</artifactId>
+            <version>1.4.190</version>
+          </dependency>
+          <dependency>
+            <groupId>mysql</groupId>
+            <artifactId>mysql-connector-java</artifactId>
+            <version>5.1.38</version>
+          </dependency>
+          <dependency>
+              <groupId>commons-dbcp</groupId>
+              <artifactId>commons-dbcp</artifactId>
+              <version>1.4</version>
+          </dependency>
+          <dependency>
+            <!-- needed to make eu.etaxonomy.cdm.database.LocalH2 available -->
+            <groupId>eu.etaxonomy</groupId>
+            <artifactId>cdmlib-persistence</artifactId>
+            <version>${project.version}</version>
+          </dependency>
+          <dependency>
+            <groupId>log4j</groupId>
+            <artifactId>log4j</artifactId>
+            <version>1.2.17</version>
+          </dependency>
+        </dependencies>
         <configuration>
-          <jvmArgs>-Xmx512m -XX:MaxPermSize=512m -Duser.home=${basedir}/target/</jvmArgs>
+          <jvmArgs>-Xmx512m -XX:MaxPermSize=512m</jvmArgs>
           <systemProperties>
             <force>true</force>
             <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 overriden since it already 
+                user.home needs to be overridden since it already 
                 exists, thus the force option is turned on above 
               -->
               <name>user.home</name>
           <httpConnector>
             <port>9090</port>
           </httpConnector>
-          <war>${project.parent.basedir}/eu.etaxonomy.taxeditor.cdmlib/src/main/resources/etc/jetty/cdmlib-remote-webapp.war</war>
+         <!-- 
+           ${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>
         <executions>