diff options
author | Dan Timoney <dtimoney@att.com> | 2020-03-24 14:30:24 -0400 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2020-03-26 10:30:45 -0400 |
commit | b80471e4f68e6d5ba670d03b12b92029e58c0bc7 (patch) | |
tree | 055f386987f8972585ea509ebe3a8cc1bd72ba6f /sliapi/springboot/pom.xml | |
parent | aee68f0187cbd919ffb544cdd00653d02fd7e991 (diff) |
Use MariaDB instead of Derby
Use MariaDB instead of Derby as backing store for sliboot
Change-Id: Ib9fa4abaaf88bcb1eac2276bc974474f067a06d3
Issue-ID: CCSDK-2188
Signed-off-by: Dan Timoney <dtimoney@att.com>
Diffstat (limited to 'sliapi/springboot/pom.xml')
-rw-r--r-- | sliapi/springboot/pom.xml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sliapi/springboot/pom.xml b/sliapi/springboot/pom.xml index 2a3fbcb06..269caa47f 100644 --- a/sliapi/springboot/pom.xml +++ b/sliapi/springboot/pom.xml @@ -91,7 +91,11 @@ <dependency> <groupId>org.apache.derby</groupId> <artifactId>derby</artifactId> - <scope>runtime</scope> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.mariadb.jdbc</groupId> + <artifactId>mariadb-java-client</artifactId> </dependency> <dependency> <groupId>junit</groupId> @@ -101,7 +105,7 @@ <dependency> <groupId>org.onap.logging-analytics</groupId> <artifactId>logging-filter-spring</artifactId> - <version>1.6.4</version> + <version>1.6.6</version> </dependency> <dependency> <groupId>javax.ws.rs</groupId> |