centralizing dependency versions and managing libraries in lib/ through maven
[taxeditor.git] / eu.etaxonomy.taxeditor.webapp / pom.xml
index 7135effae979ac62b43e9312389228e486dc9e99..2e9728a2a35e749192cec66832b0156dc835a2f6 100644 (file)
@@ -11,7 +11,6 @@
   <packaging>eclipse-plugin</packaging>
   <name>CDM Library Webapp Plugin</name>
   <description>CDM Library webapp as a plugin</description>
   <packaging>eclipse-plugin</packaging>
   <name>CDM Library Webapp Plugin</name>
   <description>CDM Library webapp as a plugin</description>
-
   <build>
     <pluginManagement>
       <plugins>
   <build>
     <pluginManagement>
       <plugins>
@@ -53,8 +52,8 @@
               <goal>copy-dependencies</goal>
             </goals>
             <configuration>
               <goal>copy-dependencies</goal>
             </goals>
             <configuration>
-              <includeArtifactIds><!--  Comma separated list of Artifact names to include -->
-                c3p0,mchange-commons-java,h2
+              <includeArtifactIds>
+                c3p0,mchange-commons-java,h2,mysql-connector-java,log4j,javax.servlet-api,jetty-all
               </includeArtifactIds>
               <outputDirectory>
                 ${basedir}/lib
               </includeArtifactIds>
               <outputDirectory>
                 ${basedir}/lib
     <dependency>
       <groupId>com.h2database</groupId>
       <artifactId>h2</artifactId>
     <dependency>
       <groupId>com.h2database</groupId>
       <artifactId>h2</artifactId>
-      <version>1.4.190</version>
+      <version>${h2.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>com.h2database</groupId>
+      <artifactId>h2</artifactId>
+      <version>${h2.version}</version>
+    </dependency>
+    <dependency>
+        <groupId>mysql</groupId>
+        <artifactId>mysql-connector-java</artifactId>
+        <version>5.1.24</version>
     </dependency>
      <dependency>
       <groupId>com.mchange</groupId>
       <artifactId>c3p0</artifactId>
     </dependency>
      <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>
+      <version>${c3p0.version}</version>
      </dependency>
      <dependency>
         <groupId>com.mchange</groupId>
         <artifactId>mchange-commons-java</artifactId>
      </dependency>
      <dependency>
         <groupId>com.mchange</groupId>
         <artifactId>mchange-commons-java</artifactId>
-        <version>0.2.11</version>
+        <version>${mchange-commons-java.version}</version>
      </dependency>
      </dependency>
+     <dependency>
+        <groupId>log4j</groupId>
+        <artifactId>log4j</artifactId>
+        <version>${log4j.version}</version>
+    </dependency>
+    <dependency>
+        <groupId>javax.servlet</groupId>
+        <artifactId>javax.servlet-api</artifactId>
+        <version>3.1.0</version>
+    </dependency>
+    <dependency>
+        <groupId>org.eclipse.jetty.aggregate</groupId>
+        <artifactId>jetty-all</artifactId>
+        <version>9.2.9.v20150224</version>
+    </dependency>
   </dependencies>
 </project>
 
   </dependencies>
 </project>