Skip to content

Commit 0daf03b

Browse files
committed
spring data version 2025.0.1 upgrade fix
1 parent 9e059c4 commit 0daf03b

File tree

6 files changed

+5
-9
lines changed

6 files changed

+5
-9
lines changed

samples/spring-data-jdbc/googlesql/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<dependency>
2424
<groupId>org.springframework.data</groupId>
2525
<artifactId>spring-data-bom</artifactId>
26-
<version>2024.1.7</version>
26+
<version>2025.0.1</version>
2727
<scope>import</scope>
2828
<type>pom</type>
2929
</dependency>

samples/spring-data-jdbc/googlesql/src/main/java/com/google/cloud/spanner/sample/JdbcConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@
2424
import org.springframework.context.annotation.DependsOn;
2525
import org.springframework.context.annotation.Lazy;
2626
import org.springframework.data.jdbc.core.convert.DefaultJdbcTypeFactory;
27-
import org.springframework.data.jdbc.core.convert.JdbcArrayColumns;
2827
import org.springframework.data.jdbc.core.convert.JdbcConverter;
2928
import org.springframework.data.jdbc.core.convert.JdbcCustomConversions;
3029
import org.springframework.data.jdbc.core.convert.MappingJdbcConverter;
3130
import org.springframework.data.jdbc.core.convert.RelationResolver;
31+
import org.springframework.data.jdbc.core.dialect.JdbcArrayColumns;
3232
import org.springframework.data.jdbc.core.dialect.JdbcDialect;
3333
import org.springframework.data.jdbc.core.mapping.JdbcMappingContext;
3434
import org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration;

samples/spring-data-jdbc/googlesql/src/main/resources/create_schema.sql

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
2-
-- This script creates the database schema for this sample application.
3-
-- The script is executed by the DatabaseSeeder class.
4-
51
CREATE TABLE IF NOT EXISTS singers (
62
id INT64 NOT NULL GENERATED BY DEFAULT AS IDENTITY (BIT_REVERSED_POSITIVE) PRIMARY KEY,
73
first_name STRING(MAX),

samples/spring-data-jdbc/postgresql/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<dependency>
2424
<groupId>org.springframework.data</groupId>
2525
<artifactId>spring-data-bom</artifactId>
26-
<version>2024.1.7</version>
26+
<version>2025.0.1</version>
2727
<scope>import</scope>
2828
<type>pom</type>
2929
</dependency>

samples/spring-data-mybatis/googlesql/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<dependency>
2929
<groupId>org.springframework.data</groupId>
3030
<artifactId>spring-data-bom</artifactId>
31-
<version>2024.1.7</version>
31+
<version>2025.0.1</version>
3232
<scope>import</scope>
3333
<type>pom</type>
3434
</dependency>

samples/spring-data-mybatis/postgresql/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<dependency>
2929
<groupId>org.springframework.data</groupId>
3030
<artifactId>spring-data-bom</artifactId>
31-
<version>2024.1.7</version>
31+
<version>2025.0.1</version>
3232
<scope>import</scope>
3333
<type>pom</type>
3434
</dependency>

0 commit comments

Comments
 (0)