Upgrade to Spring Boot 3.0 GA.

Closes #654
This commit is contained in:
Mark Paluch
2022-12-12 10:58:42 +01:00
parent 3f938634d9
commit 1065f4d5ed
4 changed files with 9 additions and 37 deletions

View File

@@ -9,8 +9,8 @@
<name>Spring Data - Using the BOM for dependency management</name>
<properties>
<spring.version>6.0.0-SNAPSHOT</spring.version>
<spring-data.version>2022.0.0-SNAPSHOT</spring-data.version>
<spring.version>6.0.0</spring.version>
<spring-data.version>2022.0.0</spring-data.version>
</properties>
<dependencyManagement>

View File

@@ -9,6 +9,7 @@
<groupId>org.springframework.data.examples</groupId>
<artifactId>spring-data-examples</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<name>Spring Data JPA - GraalVM Native Image</name>
@@ -24,12 +25,6 @@
<artifactId>h2</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>jakarta.persistence</groupId>
<artifactId>jakarta.persistence-api</artifactId>
<version>3.0.0</version>
</dependency>
</dependencies>
<build>

View File

@@ -3,21 +3,20 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.springframework.data.examples</groupId>
<artifactId>spring-data-jpa-hibernate-multitenant-examples</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version>
<packaging>pom</packaging>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.0.0-SNAPSHOT</version>
<groupId>org.springframework.data.examples</groupId>
<artifactId>spring-data-examples</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<name>Hibernate Multitenant Examples</name>
<description>
A set of projects demonstrating how Hibernates Multitenant feature can be integrated with Spring Boot and Spring Data JPA.
A set of projects demonstrating how Hibernates Multitenant features can be integrated with Spring Boot and Spring Data JPA.
</description>
<modules>
@@ -26,26 +25,4 @@
<module>db</module>
</modules>
<repositories>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</project>

View File

@@ -13,7 +13,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0</version>
</parent>
<modules>