diff options
author | FrancescoFioraEst <francesco.fiora@est.tech> | 2021-10-28 10:19:09 +0100 |
---|---|---|
committer | FrancescoFioraEst <francesco.fiora@est.tech> | 2021-11-05 16:56:25 +0000 |
commit | baf0a9fdfd5e699ce5950914121f093282a3e4ed (patch) | |
tree | 8a86eef69c2c98df0ea868ffe13fc3b442a450ee /models | |
parent | 7bc53b8dd7c12dc108ad2625ad6d4c14804e76a6 (diff) |
Add Spring Jpa configuration
Issue-ID: POLICY-3795
Change-Id: Ic0955f412bfcd94094c19aceb4f25be8e695099a
Signed-off-by: FrancescoFioraEst <francesco.fiora@est.tech>
Diffstat (limited to 'models')
-rw-r--r-- | models/pom.xml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/models/pom.xml b/models/pom.xml index c534a16f4..4adf64d2a 100644 --- a/models/pom.xml +++ b/models/pom.xml @@ -32,4 +32,23 @@ <artifactId>policy-clamp-models</artifactId> <name>${project.artifactId}</name> + + <dependencies> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-data-jpa</artifactId> + <version>${version.springboot}</version> + <exclusions> + <exclusion> + <groupId>org.hibernate</groupId> + <artifactId>hibernate-core</artifactId> + </exclusion> + <exclusion> + <groupId>org.hibernate.common</groupId> + <artifactId>common-annotations</artifactId> + </exclusion> + </exclusions> + </dependency> + </dependencies> + </project> |