diff options
author | Ram Krishna Verma <ram_krishna.verma@bell.ca> | 2022-02-15 12:00:31 -0500 |
---|---|---|
committer | Ram Krishna Verma <ram_krishna.verma@bell.ca> | 2022-02-15 12:02:04 -0500 |
commit | 6d21cfb1155e1805280976c00e4c5bfedebba734 (patch) | |
tree | 0869c4fb9c6ff622507c4888b4d68bfb7bdb1622 | |
parent | 7f173a80744cf52acf2304d8c7b13a576ad68173 (diff) |
Add hibernate core as managed dependency
Adding hibernate core as a managed dependency in policy/parent
so that multiple components can inherit the common version.
Issue-ID: POLICY-3931
Change-Id: Ice21aca16bc90b32890e08fd51fc672962f97164
Signed-off-by: Ram Krishna Verma <ram_krishna.verma@bell.ca>
-rw-r--r-- | integration/pom.xml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/integration/pom.xml b/integration/pom.xml index acec7bbe..872162da 100644 --- a/integration/pom.xml +++ b/integration/pom.xml @@ -52,6 +52,7 @@ <version.netty>4.1.70.Final</version.netty> <version.springboot>2.5.0</version.springboot> <version.springboot.actuator>2.5.4</version.springboot.actuator> + <version.hibernate.core>5.4.31.Final</version.hibernate.core> <version.eelf.core>1.0.0</version.eelf.core> <version.camel>3.7.3</version.camel> <version.tomcat>9.0.45</version.tomcat> @@ -780,6 +781,13 @@ <artifactId>spring-boot-starter-security</artifactId> <version>${version.springboot}</version> </dependency> + + <!-- Hibernate --> + <dependency> + <groupId>org.hibernate</groupId> + <artifactId>hibernate-core</artifactId> + <version>${version.hibernate.core}</version> + </dependency> </dependencies> </dependencyManagement> |