diff options
author | Jorge Hernandez <jh1730@att.com> | 2017-08-16 12:41:11 -0500 |
---|---|---|
committer | Jorge Hernandez <jh1730@att.com> | 2017-08-16 12:44:59 -0500 |
commit | 0c409143a812702d8dc779cfcab5ba0ab14e89b5 (patch) | |
tree | d9f191ca76259fb3c860cba727eb5245dfa941d9 /policy-management | |
parent | f9f086c4f7517602f7f8e862699618d79afddf58 (diff) |
add hibernate JPA libraries in base
To make feature development easier for DB-enabled features
Change-Id: I7f69ecfbbfb9eaac92f698bdb787ce881eec39f0
Issue-ID: POLICY-96
Signed-off-by: Jorge Hernandez <jh1730@att.com>
Diffstat (limited to 'policy-management')
-rw-r--r-- | policy-management/pom.xml | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/policy-management/pom.xml b/policy-management/pom.xml index e3196604..b01668b0 100644 --- a/policy-management/pom.xml +++ b/policy-management/pom.xml @@ -260,7 +260,17 @@ <groupId>org.mariadb.jdbc</groupId> <artifactId>mariadb-java-client</artifactId> </dependency> - + + <dependency> + <groupId>org.hibernate</groupId> + <artifactId>hibernate-core</artifactId> + </dependency> + + <dependency> + <groupId>org.hibernate.common</groupId> + <artifactId>hibernate-commons-annotations</artifactId> + </dependency> + </dependencies> </project> |