[JAVA-31113] Upgrade projects to latest hibernate version (#15825)
This commit is contained in:
parent
cc2d1bfb36
commit
2f5aaaee4c
@ -27,7 +27,7 @@
|
|||||||
<version>${org.springframework.data.version}</version>
|
<version>${org.springframework.data.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.hibernate</groupId>
|
<groupId>org.hibernate.orm</groupId>
|
||||||
<artifactId>hibernate-core</artifactId>
|
<artifactId>hibernate-core</artifactId>
|
||||||
<version>${hibernate.version}</version>
|
<version>${hibernate.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
@ -65,6 +65,7 @@
|
|||||||
<tomcat-dbcp.version>9.0.0.M26</tomcat-dbcp.version>
|
<tomcat-dbcp.version>9.0.0.M26</tomcat-dbcp.version>
|
||||||
<com.sun.xml.version>4.0.2</com.sun.xml.version>
|
<com.sun.xml.version>4.0.2</com.sun.xml.version>
|
||||||
<h2.version>2.1.214</h2.version>
|
<h2.version>2.1.214</h2.version>
|
||||||
|
<hibernate.version>6.4.2.Final</hibernate.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
</project>
|
</project>
|
@ -80,7 +80,7 @@
|
|||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<h2.version>2.1.214</h2.version> <!-- needs to be specified as it fails with parent's 1.4.200 -->
|
<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-types.version>2.21.1</hibernate-types.version>
|
||||||
<hibernate-validator.version>8.0.1.Final</hibernate-validator.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>
|
<org.glassfish.javax.el.version>3.0.1-b11</org.glassfish.javax.el.version>
|
||||||
|
@ -45,7 +45,7 @@
|
|||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.hibernate</groupId>
|
<groupId>org.hibernate.orm</groupId>
|
||||||
<artifactId>hibernate-core</artifactId>
|
<artifactId>hibernate-core</artifactId>
|
||||||
<version>${hibernate.version}</version>
|
<version>${hibernate.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
@ -92,6 +92,19 @@
|
|||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</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>
|
<properties>
|
||||||
<org.springframework.version>6.0.6</org.springframework.version>
|
<org.springframework.version>6.0.6</org.springframework.version>
|
||||||
<org.springframework.data.version>3.0.3</org.springframework.data.version>
|
<org.springframework.data.version>3.0.3</org.springframework.data.version>
|
||||||
@ -99,7 +112,7 @@
|
|||||||
<mysql.version>8.2.0</mysql.version>
|
<mysql.version>8.2.0</mysql.version>
|
||||||
<mariaDB4j.version>2.6.0</mariaDB4j.version>
|
<mariaDB4j.version>2.6.0</mariaDB4j.version>
|
||||||
<h2.version>2.1.214</h2.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>
|
<testcontainers.mysql.version>1.17.6</testcontainers.mysql.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user