diff options
author | liamfallon <liam.fallon@est.tech> | 2019-03-25 08:09:14 +0000 |
---|---|---|
committer | liamfallon <liam.fallon@est.tech> | 2019-03-25 08:09:14 +0000 |
commit | bde47d7867610f36042d3ce1440c1598d1248fcc (patch) | |
tree | 41824c940daa78c00a6c4b8f75b19faccd4638af /models-tosca/pom.xml | |
parent | 2a245ef80e39a101015efb164de53f1753fa5d47 (diff) |
Add provider for Tosca Policies
Provider working from JAVA API call through to database and
back for TOSCA policies with full unit test.
Issue-ID: POLICY-1195
Change-Id: I82cf3b513b4921dcb2e6726856aa4fbeb7d0d816
Signed-off-by: liamfallon <liam.fallon@est.tech>
Diffstat (limited to 'models-tosca/pom.xml')
-rw-r--r-- | models-tosca/pom.xml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/models-tosca/pom.xml b/models-tosca/pom.xml index 5658a1c0e..c8fa2520a 100644 --- a/models-tosca/pom.xml +++ b/models-tosca/pom.xml @@ -56,5 +56,18 @@ <artifactId>gson</artifactId> <version>${policy.common.version}</version> </dependency> + + <dependency> + <groupId>com.h2database</groupId> + <artifactId>h2</artifactId> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>org.mariadb.jdbc</groupId> + <artifactId>mariadb-java-client</artifactId> + <scope>test</scope> + </dependency> + </dependencies> </project> |