[JAVA-31113] Upgrade projects to latest hibernate version (#15825)

This commit is contained in:
Amit Pandey 2024-02-09 15:56:18 +05:30 committed by GitHub
parent cc2d1bfb36
commit 2f5aaaee4c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 18 additions and 4 deletions

View File

@ -27,7 +27,7 @@
<version>${org.springframework.data.version}</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<groupId>org.hibernate.orm</groupId>
<artifactId>hibernate-core</artifactId>
<version>${hibernate.version}</version>
</dependency>
@ -65,6 +65,7 @@
<tomcat-dbcp.version>9.0.0.M26</tomcat-dbcp.version>
<com.sun.xml.version>4.0.2</com.sun.xml.version>
<h2.version>2.1.214</h2.version>
<hibernate.version>6.4.2.Final</hibernate.version>
</properties>
</project>

View File

@ -80,7 +80,7 @@
<properties>
<h2.version>2.1.214</h2.version> <!-- needs to be specified as it fails with parent's 1.4.200 -->
<hibernate.version>6.1.7.Final</hibernate.version>
<hibernate.version>6.4.2.Final</hibernate.version>
<hibernate-types.version>2.21.1</hibernate-types.version>
<hibernate-validator.version>8.0.1.Final</hibernate-validator.version>
<org.glassfish.javax.el.version>3.0.1-b11</org.glassfish.javax.el.version>

View File

@ -45,7 +45,7 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<groupId>org.hibernate.orm</groupId>
<artifactId>hibernate-core</artifactId>
<version>${hibernate.version}</version>
</dependency>
@ -92,6 +92,19 @@
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>17</source>
<target>17</target>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<org.springframework.version>6.0.6</org.springframework.version>
<org.springframework.data.version>3.0.3</org.springframework.data.version>
@ -99,7 +112,7 @@
<mysql.version>8.2.0</mysql.version>
<mariaDB4j.version>2.6.0</mariaDB4j.version>
<h2.version>2.1.214</h2.version>
<hibernate.version>6.3.1.Final</hibernate.version>
<hibernate.version>6.4.2.Final</hibernate.version>
<testcontainers.mysql.version>1.17.6</testcontainers.mysql.version>
</properties>