Skip to content

Commit

Permalink
Remove unused Hibernate dep from Serving (#721)
Browse files Browse the repository at this point in the history
  • Loading branch information
ches authored May 22, 2020
1 parent 615423a commit ec7d413
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
2 changes: 0 additions & 2 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -149,11 +149,9 @@
<version>v1b3-rev266-1.25.0</version>
</dependency>

<!--compile 'org.hibernate:hibernate-core:5.3.6.Final'-->
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>5.3.6.Final</version>
</dependency>

<!--compile 'org.postgresql:postgresql:42.2.5'-->
Expand Down
6 changes: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
<io.prometheus.version>0.8.0</io.prometheus.version>
<byte-buddy.version>1.9.10</byte-buddy.version>
<hamcrest.version>1.3</hamcrest.version>
<hibernate.version>5.3.6.Final</hibernate.version>
<kafka.version>2.3.0</kafka.version>
<mockito.version>2.28.2</mockito.version>
<!-- OpenCensus is used in grpc and Google's HTTP client libs in Cloud SDKs -->
Expand Down Expand Up @@ -249,6 +250,11 @@
<artifactId>kafka-clients</artifactId>
<version>${kafka.version}</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>${hibernate.version}</version>
</dependency>
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
Expand Down
7 changes: 0 additions & 7 deletions serving/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -259,13 +259,6 @@
<scope>test</scope>
</dependency>

<!-- Hibernate for formatting SQL string -->
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>5.4.5.Final</version>
</dependency>

<!-- Utilities -->
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
Expand Down

0 comments on commit ec7d413

Please sign in to comment.