diff options
author | Dan Timoney <dtimoney@att.com> | 2018-02-13 09:42:07 -0500 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2018-02-13 09:42:07 -0500 |
commit | 33314626c3c8cf06a364deb11dfb6f006aed5d82 (patch) | |
tree | e40fe74df0ecdc35271ed6cdba6e0f0bf786a749 /dgbuilder | |
parent | 72a9c65ab0a305e487e8aed11ff2d8ac34076943 (diff) |
Replace mysql with mariadb
Use MariaDB JDBC controller instead of mysql to remove dependency
on GPL license.
Change-Id: I8986ddff7613fa093fe8d653364cdb6a66604e31
Issue-ID: SDNC-189
Signed-off-by: Dan Timoney <dtimoney@att.com>
Former-commit-id: 3e1e6367cde13246c60646645d405389df01a27a
Diffstat (limited to 'dgbuilder')
-rw-r--r-- | dgbuilder/pom.xml | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/dgbuilder/pom.xml b/dgbuilder/pom.xml index ad32aae1..a2b5e8c7 100644 --- a/dgbuilder/pom.xml +++ b/dgbuilder/pom.xml @@ -33,12 +33,11 @@ <artifactId>sli-common</artifactId> <version>${sdnctl.sli.version}</version> </dependency> - <dependency> - <groupId>mysql</groupId> - <artifactId>mysql-connector-java</artifactId> - <version>5.1.31</version> - <type>jar</type> - </dependency> + <dependency> + <groupId>org.mariadb.jdbc</groupId> + <artifactId>mariadb-java-client</artifactId> + <version>${mariadb.connector.version}</version> + </dependency> <dependency> <groupId>org.antlr</groupId> <artifactId>antlr4</artifactId> |