Update MySQL Connector/J and use new Maven coordinates
This commit is contained in:
committed by
Mahmoud Ben Hassine
parent
0b694117eb
commit
15ef22284a
@@ -107,9 +107,9 @@
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>mysql</groupId>
|
||||
<artifactId>mysql-connector-java</artifactId>
|
||||
<version>${mysql-connector-java.version}</version>
|
||||
<groupId>com.mysql</groupId>
|
||||
<artifactId>mysql-connector-j</artifactId>
|
||||
<version>${mysql-connector-j.version}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
|
||||
@@ -67,7 +67,7 @@ class MySQLJdbcJobRepositoryIntegrationTests {
|
||||
|
||||
// TODO find the best way to externalize and manage image versions
|
||||
// when implementing https://github.com/spring-projects/spring-batch/issues/3092
|
||||
private static final DockerImageName MYSQL_IMAGE = DockerImageName.parse("mysql:8.0.24");
|
||||
private static final DockerImageName MYSQL_IMAGE = DockerImageName.parse("mysql:8.0.31");
|
||||
|
||||
@Container
|
||||
public static MySQLContainer<?> mysql = new MySQLContainer<>(MYSQL_IMAGE);
|
||||
|
||||
@@ -56,7 +56,7 @@ import static org.junit.jupiter.api.Assertions.assertNotNull;
|
||||
class MySQLJobRepositoryIntegrationTests {
|
||||
|
||||
// TODO find the best way to externalize and manage image versions
|
||||
private static final DockerImageName MYSQL_IMAGE = DockerImageName.parse("mysql:8.0.25");
|
||||
private static final DockerImageName MYSQL_IMAGE = DockerImageName.parse("mysql:8.0.31");
|
||||
|
||||
@Container
|
||||
public static MySQLContainer<?> mysql = new MySQLContainer<>(MYSQL_IMAGE);
|
||||
|
||||
Reference in New Issue
Block a user