JAVA-220644 | Upgrade spring-boot-persistence-h2 to Spring Boot 3 (#14998)

This commit is contained in:
Gaetano Piazzolla
2023-10-21 10:36:49 +02:00
committed by GitHub
parent 835cb8e15c
commit 106067388d
10 changed files with 44 additions and 33 deletions
@@ -11,9 +11,9 @@
<parent>
<groupId>com.baeldung</groupId>
<artifactId>parent-boot-2</artifactId>
<artifactId>parent-boot-3</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../../parent-boot-2</relativePath>
<relativePath>../../parent-boot-3</relativePath>
</parent>
<dependencies>
@@ -44,12 +44,19 @@
<artifactId>db-util</artifactId>
<version>${db-util.version}</version>
</dependency>
<!-- fixes https://hibernate.atlassian.net/browse/HHH-16593-->
<!-- and https://discourse.hibernate.org/t/bootstrap-failed-with-hibernate-6-3-0-final/8200 -->
<dependency>
<groupId>org.hibernate.orm</groupId>
<artifactId>hibernate-core</artifactId>
<version>6.3.1.Final</version>
</dependency>
</dependencies>
<properties>
<!-- The main class to start by executing java -jar -->
<start-class>com.baeldung.h2db.demo.server.SpringBootApp</start-class>
<db-util.version>1.0.4</db-util.version>
<db-util.version>1.0.7</db-util.version>
</properties>
</project>