Update dependency

This commit is contained in:
Patrick Baumgartner 2023-11-24 18:32:42 +01:00 committed by Dave Syer
parent 5a9d1fc40f
commit de0e3663c0
14 changed files with 1554 additions and 609 deletions

View file

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

View file

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