fixing maven-jetty-plugin dependencies
[taxeditor.git] / eu.etaxonomy.taxeditor.test / pom.xml
index 6a2d172eb4f5510e122e330bb133be76adbd97ae..13d32aed95087e83abc0218c204fb67218626a5c 100644 (file)
@@ -1,12 +1,10 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project>
-
+<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>3.13.0-SNAPSHOT</version>
+    <version>4.0.0-SNAPSHOT</version>
   </parent>
-  <modelVersion>4.0.0</modelVersion>
   <artifactId>eu.etaxonomy.taxeditor.test</artifactId>
   <packaging>eclipse-test-plugin</packaging>
   <name>UI Test Bundle</name>
       <plugin>
         <groupId>org.eclipse.jetty</groupId>
         <artifactId>jetty-maven-plugin</artifactId>
-        <version>9.2.9.v20150224</version>
-        <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>
-        </dependencies>
+        <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>
-          <jvmArgs>-Xmx512m -XX:MaxPermSize=512m</jvmArgs>
           <systemProperties>
             <force>true</force>
+            <systemProperty>
+              <name>cdm.datasource</name>
+              <value>cdmTest</value>
+            </systemProperty>
             <systemProperty>
               <!-- 
                 The lucene index should be placed into the target folder,
               <name>cdm.beanDefinitionFile</name>
               <value>${basedir}/src/test/resources/datasources.xml</value>
             </systemProperty>
-            <systemProperty>
-              <name>cdm.datasource</name>
-              <value>cdmTest</value>
-            </systemProperty>
           </systemProperties>
           <stopPort>9191</stopPort>
           <stopKey>jetty-cdm-server</stopKey>
           <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}/../
-         -->
+      <!-- 
+        ${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>com.mchange</groupId>
+            <artifactId>c3p0</artifactId>
+            <!-- 
+              IMPORTANT!!!
+              this must exactly match the version as set in 
+              cdmlib-parent pom.xml
+            -->
+            <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>
+            <groupId>log4j</groupId>
+            <artifactId>log4j</artifactId>
+            <version>1.2.17</version>
+          </dependency> -->
+          <!--  
+          <dependency>
+            <groupId>eu.etaxonomy</groupId>
+            <artifactId>cdmlib-persistence</artifactId>
+            <version>${project.version}</version>
+            <exclusions>
+            </exclusions>
+          </dependency>
+          -->
+        </dependencies>
         <executions>
           <execution>
             <id>start-jetty</id>