You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by kw...@apache.org on 2014/10/25 00:43:13 UTC

svn commit: r1634148 - in /manifoldcf/trunk/framework: api-service/pom.xml authority-service/pom.xml crawler-ui/pom.xml jetty-runner/pom.xml

Author: kwright
Date: Fri Oct 24 22:43:12 2014
New Revision: 1634148

URL: http://svn.apache.org/r1634148
Log:
Make mariadb jdbc driver a maven dependency of various MCF pieces.  Part of CONNECTORS-1083.

Modified:
    manifoldcf/trunk/framework/api-service/pom.xml
    manifoldcf/trunk/framework/authority-service/pom.xml
    manifoldcf/trunk/framework/crawler-ui/pom.xml
    manifoldcf/trunk/framework/jetty-runner/pom.xml

Modified: manifoldcf/trunk/framework/api-service/pom.xml
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/api-service/pom.xml?rev=1634148&r1=1634147&r2=1634148&view=diff
==============================================================================
--- manifoldcf/trunk/framework/api-service/pom.xml (original)
+++ manifoldcf/trunk/framework/api-service/pom.xml Fri Oct 24 22:43:12 2014
@@ -86,6 +86,12 @@
       <version>${mysql.version}</version>
       <scope>runtime</scope>
     </dependency>
+    <dependency>
+      <groupId>org.mariadb.jdbc</groupId>
+      <artifactId>mariadb-java-client</artifactId>
+      <version>${mariadb.version}</version>
+      <scope>runtime</scope>
+    </dependency>
 
     <!-- jdbc connector databases -->
     <dependency>

Modified: manifoldcf/trunk/framework/authority-service/pom.xml
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/authority-service/pom.xml?rev=1634148&r1=1634147&r2=1634148&view=diff
==============================================================================
--- manifoldcf/trunk/framework/authority-service/pom.xml (original)
+++ manifoldcf/trunk/framework/authority-service/pom.xml Fri Oct 24 22:43:12 2014
@@ -86,6 +86,12 @@
       <version>${mysql.version}</version>
       <scope>runtime</scope>
     </dependency>
+    <dependency>
+      <groupId>org.mariadb.jdbc</groupId>
+      <artifactId>mariadb-java-client</artifactId>
+      <version>${mariadb.version}</version>
+      <scope>runtime</scope>
+    </dependency>
 
     <!-- jdbc connector databases -->
     <dependency>

Modified: manifoldcf/trunk/framework/crawler-ui/pom.xml
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/crawler-ui/pom.xml?rev=1634148&r1=1634147&r2=1634148&view=diff
==============================================================================
--- manifoldcf/trunk/framework/crawler-ui/pom.xml (original)
+++ manifoldcf/trunk/framework/crawler-ui/pom.xml Fri Oct 24 22:43:12 2014
@@ -110,6 +110,12 @@
       <version>${mysql.version}</version>
       <scope>runtime</scope>
     </dependency>
+    <dependency>
+      <groupId>org.mariadb.jdbc</groupId>
+      <artifactId>mariadb-java-client</artifactId>
+      <version>${mariadb.version}</version>
+      <scope>runtime</scope>
+    </dependency>
 
     <!-- JDBC connector dependencies -->
     <dependency>

Modified: manifoldcf/trunk/framework/jetty-runner/pom.xml
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/jetty-runner/pom.xml?rev=1634148&r1=1634147&r2=1634148&view=diff
==============================================================================
--- manifoldcf/trunk/framework/jetty-runner/pom.xml (original)
+++ manifoldcf/trunk/framework/jetty-runner/pom.xml Fri Oct 24 22:43:12 2014
@@ -305,6 +305,12 @@
       <scope>runtime</scope>
     </dependency>
     <dependency>
+      <groupId>org.mariadb.jdbc</groupId>
+      <artifactId>mariadb-java-client</artifactId>
+      <version>${mariadb.version}</version>
+      <scope>runtime</scope>
+    </dependency>
+    <dependency>
       <groupId>postgresql</groupId>
       <artifactId>postgresql</artifactId>
       <version>${postgresql.version}</version>