diff options
author | Patrick Brady <pb071s@att.com> | 2017-09-13 00:11:21 -0700 |
---|---|---|
committer | Patrick Brady <pb071s@att.com> | 2017-09-15 06:32:10 +0000 |
commit | ac62a4a52bad0f0c5d3b3a0de39893f6993a9f1b (patch) | |
tree | 3d1e90bf4df8019582452f9cd597fd72160d0ecd /appc-dispatcher/appc-dispatcher-common/appc-data-access-lib/pom.xml | |
parent | 4f2ed4e9515f416cab0e75af33b8d799c02974f1 (diff) |
Changing to mariadb java client
Changing from the mysql java connector to the
mariadb java client.
Change-Id: I2f9b1f5da37424d529e196f9b6b8d0bf4f1f9d2f
Signed-off-by: Patrick Brady <pb071s@att.com>
Issue-id: APPC-198
Diffstat (limited to 'appc-dispatcher/appc-dispatcher-common/appc-data-access-lib/pom.xml')
-rw-r--r-- | appc-dispatcher/appc-dispatcher-common/appc-data-access-lib/pom.xml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/appc-dispatcher/appc-dispatcher-common/appc-data-access-lib/pom.xml b/appc-dispatcher/appc-dispatcher-common/appc-data-access-lib/pom.xml index a074f9bcf..c0c77d980 100644 --- a/appc-dispatcher/appc-dispatcher-common/appc-data-access-lib/pom.xml +++ b/appc-dispatcher/appc-dispatcher-common/appc-data-access-lib/pom.xml @@ -36,6 +36,10 @@ <artifactId>appc-common</artifactId> <version>${project.version}</version> </dependency> + <dependency> + <groupId>org.mariadb.jdbc</groupId> + <artifactId>mariadb-java-client</artifactId> + </dependency> </dependencies> <build> <plugins> @@ -48,7 +52,7 @@ <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> <Export-Package>org.openecomp.appc.dao.util</Export-Package> <Import-Package>org.openecomp.appc.configuration,*;resolution:=optional</Import-Package> - <Embed-Dependency>mysql-connector-java</Embed-Dependency> + <Embed-Dependency>mariadb-java-client</Embed-Dependency> <Embed-Transitive>true</Embed-Transitive> </instructions> </configuration> |