aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorChristophe Closset <cc697w@intl.att.com>2017-09-11 13:37:11 +0000
committerGerrit Code Review <gerrit@onap.org>2017-09-11 13:37:11 +0000
commit45b04b34c12821502b930233ee92cd5a0b616905 (patch)
tree37975e51e0f9c1e9aa57b15be538dc4dcfc07383 /pom.xml
parente206b8d9b1cb5a52668163f488bb744fc84d1e5c (diff)
parent99384f3620f103ea9407dab044e9f67291ac8cf5 (diff)
Merge "Change mysql to mariadb connector"
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml16
1 files changed, 16 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index b5670f2c4..1f61700bd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -316,6 +316,12 @@
<groupId>com.att.ajsc</groupId>
<artifactId>sdk-java-camunda-core</artifactId>
<version>${sdk.camunda.core}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>mysql</groupId>
+ <artifactId>mysql-connector-java</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<!-- Spring Mail -->
<dependency>
@@ -360,6 +366,10 @@
<artifactId>jackson-databind</artifactId>
<groupId>com.fasterxml.jackson.core</groupId>
</exclusion>
+ <exclusion>
+ <groupId>mysql</groupId>
+ <artifactId>mysql-connector-java</artifactId>
+ </exclusion>
</exclusions>
</dependency>
<dependency>
@@ -431,6 +441,12 @@
<version>2.1.7</version>
</dependency>
+ <!-- Remove the MYSQL connector and replace it by Mariadb -->
+ <dependency>
+ <groupId>org.mariadb.jdbc</groupId>
+ <artifactId>mariadb-java-client</artifactId>
+ <version>2.1.1</version>
+ </dependency>
</dependencies>
<build>