Skip to content

Commit

Permalink
Upgraded versions: Spring Boot to 3.3.5, Java to JDK 23, logbook to 3…
Browse files Browse the repository at this point in the history
….10.0, and added (newly needed) Postgres-specific database for Flyway.
  • Loading branch information
tedyoung committed Nov 19, 2024
1 parent 23fdd70 commit 43f42c3
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,22 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.2.6</version>
<version>3.3.5</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.jitterted</groupId>
<artifactId>ensembler</artifactId>
<version>1.0.21</version>
<version>1.0.22</version>
<name>ensembler</name>
<description>Ensemble Registration Manager</description>
<properties>
<java.version>22</java.version>
<java.version>23</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.zalando</groupId>
<artifactId>logbook-spring-boot-starter</artifactId>
<version>3.7.2</version>
<version>3.10.0</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -113,7 +113,10 @@
<groupId>org.flywaydb</groupId>
<artifactId>flyway-core</artifactId>
</dependency>

<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-database-postgresql</artifactId>
</dependency>

<!-- TEST RELATED -->
<dependency>
Expand Down

0 comments on commit 43f42c3

Please sign in to comment.