diff options
author | liamfallon <liam.fallon@est.tech> | 2019-03-14 10:01:58 +0000 |
---|---|---|
committer | liamfallon <liam.fallon@est.tech> | 2019-03-14 10:01:58 +0000 |
commit | 4c28d2cdbf03be9dfe51caa05d45ba341b4c94cd (patch) | |
tree | 9689b2e6a2d6017c8ab9ece7e94c8dd097f3c66d /models-tosca/pom.xml | |
parent | 748e3cd4a9e89b3b87a74b9134d45687f197409b (diff) |
Add DAO Enabled Tosca Model
Add DAO annotations to TOSCA model
Add keying between concepts and define
foreign keys in objects for translation to DB schema
Added provider interface, factory, and stubbed implementation.
Completed unit test for models-base
Completed unit test for models-dao
Completed unit test for models-tosca
Issue-ID: POLICY-1195
Change-Id: I53a0ba8b7a679b6887b38bdab184b60315e0cf5b
Signed-off-by: liamfallon <liam.fallon@est.tech>
Diffstat (limited to 'models-tosca/pom.xml')
-rw-r--r-- | models-tosca/pom.xml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/models-tosca/pom.xml b/models-tosca/pom.xml index 839cc72c8..56c8d7c15 100644 --- a/models-tosca/pom.xml +++ b/models-tosca/pom.xml @@ -30,7 +30,7 @@ <artifactId>policy-models-tosca</artifactId> <name>${project.artifactId}</name> - <description>The platform models that are shared across different policy components</description> + <description>The TOSCA models that are shared across different policy components</description> <dependencies> <dependency> @@ -38,5 +38,11 @@ <artifactId>policy-models-base</artifactId> <version>${project.version}</version> </dependency> + + <dependency> + <groupId>org.onap.policy.common</groupId> + <artifactId>gson</artifactId> + <version>${policy.common.version}</version> + </dependency> </dependencies> </project> |