diff options
author | Christophe Closset <cc697w@intl.att.com> | 2017-09-11 13:37:11 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-09-11 13:37:11 +0000 |
commit | 45b04b34c12821502b930233ee92cd5a0b616905 (patch) | |
tree | 37975e51e0f9c1e9aa57b15be538dc4dcfc07383 /pom.xml | |
parent | e206b8d9b1cb5a52668163f488bb744fc84d1e5c (diff) | |
parent | 99384f3620f103ea9407dab044e9f67291ac8cf5 (diff) |
Merge "Change mysql to mariadb connector"
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -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> |