diff options
author | liamfallon <liam.fallon@est.tech> | 2023-02-02 14:42:33 +0000 |
---|---|---|
committer | liamfallon <liam.fallon@est.tech> | 2023-02-06 15:54:04 +0000 |
commit | ccdc1b0814aa5609ade406a791128eb89bbc76e0 (patch) | |
tree | e403dd6f428d5adddae3858e7e872351a4a1d277 /integrity-monitor/pom.xml | |
parent | 987b9f7a030a2389216c998225abb2602ef2dba3 (diff) |
Replace Eclipselink with Hibernate
Issue-ID: POLICY-4533
Change-Id: I9d2e4d90bf997935efad16e8ae4473d635ae9d65
Signed-off-by: liamfallon <liam.fallon@est.tech>
Diffstat (limited to 'integrity-monitor/pom.xml')
-rw-r--r-- | integrity-monitor/pom.xml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/integrity-monitor/pom.xml b/integrity-monitor/pom.xml index 72762ef5..5657d4b0 100644 --- a/integrity-monitor/pom.xml +++ b/integrity-monitor/pom.xml @@ -57,8 +57,12 @@ <artifactId>h2</artifactId> </dependency> <dependency> - <groupId>org.eclipse.persistence</groupId> - <artifactId>eclipselink</artifactId> + <groupId>org.hibernate.javax.persistence</groupId> + <artifactId>hibernate-jpa-2.1-api</artifactId> + </dependency> + <dependency> + <groupId>org.hibernate</groupId> + <artifactId>hibernate-entitymanager</artifactId> </dependency> <dependency> <groupId>org.projectlombok</groupId> |