Skip to content

Commit ec7d413

Browse files
authored
Remove unused Hibernate dep from Serving (#721)
1 parent 615423a commit ec7d413

3 files changed

Lines changed: 6 additions & 9 deletions

File tree

core/pom.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,11 +149,9 @@
149149
<version>v1b3-rev266-1.25.0</version>
150150
</dependency>
151151

152-
<!--compile 'org.hibernate:hibernate-core:5.3.6.Final'-->
153152
<dependency>
154153
<groupId>org.hibernate</groupId>
155154
<artifactId>hibernate-core</artifactId>
156-
<version>5.3.6.Final</version>
157155
</dependency>
158156

159157
<!--compile 'org.postgresql:postgresql:42.2.5'-->

pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@
5454
<io.prometheus.version>0.8.0</io.prometheus.version>
5555
<byte-buddy.version>1.9.10</byte-buddy.version>
5656
<hamcrest.version>1.3</hamcrest.version>
57+
<hibernate.version>5.3.6.Final</hibernate.version>
5758
<kafka.version>2.3.0</kafka.version>
5859
<mockito.version>2.28.2</mockito.version>
5960
<!-- OpenCensus is used in grpc and Google's HTTP client libs in Cloud SDKs -->
@@ -249,6 +250,11 @@
249250
<artifactId>kafka-clients</artifactId>
250251
<version>${kafka.version}</version>
251252
</dependency>
253+
<dependency>
254+
<groupId>org.hibernate</groupId>
255+
<artifactId>hibernate-core</artifactId>
256+
<version>${hibernate.version}</version>
257+
</dependency>
252258
<dependency>
253259
<groupId>net.bytebuddy</groupId>
254260
<artifactId>byte-buddy</artifactId>

serving/pom.xml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -259,13 +259,6 @@
259259
<scope>test</scope>
260260
</dependency>
261261

262-
<!-- Hibernate for formatting SQL string -->
263-
<dependency>
264-
<groupId>org.hibernate</groupId>
265-
<artifactId>hibernate-core</artifactId>
266-
<version>5.4.5.Final</version>
267-
</dependency>
268-
269262
<!-- Utilities -->
270263
<dependency>
271264
<groupId>com.fasterxml.jackson.dataformat</groupId>

0 commit comments

Comments
 (0)