Updated db containers, and dependencies

This commit is contained in:
Patrick Baumgartner 2024-09-28 08:58:17 +02:00 committed by Dave Syer
parent 2daa3993ee
commit 6fffe61b93
6 changed files with 17 additions and 15 deletions

View file

@ -46,7 +46,7 @@ class MySqlIntegrationTests {
@ServiceConnection
@Container
static MySQLContainer<?> container = new MySQLContainer<>("mysql:8.4");
static MySQLContainer<?> container = new MySQLContainer<>("mysql:9.0");
@LocalServerPort
int port;

View file

@ -36,7 +36,7 @@ public class MysqlTestApplication {
@Profile("mysql")
@Bean
static MySQLContainer<?> container() {
return new MySQLContainer<>("mysql:8.4");
return new MySQLContainer<>("mysql:9.0");
}
public static void main(String[] args) {