Skip to content

Commit df0707f

Browse files
upgrading to spring boot version 3.3.0 (#233)
1 parent 076cf2c commit df0707f

File tree

6 files changed

+21
-3
lines changed

6 files changed

+21
-3
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>3.2.4</version>
8+
<version>3.3.0</version>
99
<relativePath></relativePath>
1010
<!-- lookup parent from repository -->
1111
</parent>

spring-boot-datajpatest/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@
2727
<groupId>org.flywaydb</groupId>
2828
<artifactId>flyway-core</artifactId>
2929
</dependency>
30+
<dependency>
31+
<groupId>org.flywaydb</groupId>
32+
<artifactId>flyway-database-postgresql</artifactId>
33+
</dependency>
3034
<dependency>
3135
<groupId>io.hypersistence</groupId>
3236
<artifactId>hypersistence-utils-hibernate-63</artifactId>

spring-boot-integration-tests-testcontainers/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@
2929
<groupId>org.flywaydb</groupId>
3030
<artifactId>flyway-core</artifactId>
3131
</dependency>
32+
<dependency>
33+
<groupId>org.flywaydb</groupId>
34+
<artifactId>flyway-database-postgresql</artifactId>
35+
</dependency>
3236
<dependency>
3337
<groupId>org.postgresql</groupId>
3438
<artifactId>postgresql</artifactId>

spring-boot-kotlin-testcontainers/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@
3535
<groupId>org.flywaydb</groupId>
3636
<artifactId>flyway-core</artifactId>
3737
</dependency>
38+
<dependency>
39+
<groupId>org.flywaydb</groupId>
40+
<artifactId>flyway-database-postgresql</artifactId>
41+
</dependency>
3842
<dependency>
3943
<groupId>org.jetbrains.kotlin</groupId>
4044
<artifactId>kotlin-reflect</artifactId>

spring-boot-shedlock/pom.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,10 @@
3232
<groupId>org.flywaydb</groupId>
3333
<artifactId>flyway-core</artifactId>
3434
</dependency>
35-
35+
<dependency>
36+
<groupId>org.flywaydb</groupId>
37+
<artifactId>flyway-database-postgresql</artifactId>
38+
</dependency>
3639
<dependency>
3740
<groupId>net.javacrumbs.shedlock</groupId>
3841
<artifactId>shedlock-spring</artifactId>

testcontainers-reuse-existing-containers/pom.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,10 @@
2828
<groupId>org.flywaydb</groupId>
2929
<artifactId>flyway-core</artifactId>
3030
</dependency>
31-
31+
<dependency>
32+
<groupId>org.flywaydb</groupId>
33+
<artifactId>flyway-database-postgresql</artifactId>
34+
</dependency>
3235
<dependency>
3336
<groupId>org.postgresql</groupId>
3437
<artifactId>postgresql</artifactId>

0 commit comments

Comments
 (0)