Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update MySQL Connector/J and use new Maven coordinates #4211

Merged
merged 1 commit into from Oct 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -106,7 +106,7 @@
<jakarta.mail.version>2.0.1</jakarta.mail.version>
<woodstox-core.version>6.3.1</woodstox-core.version>
<aspectj.version>1.9.9.1</aspectj.version>
<mysql-connector-java.version>8.0.30</mysql-connector-java.version>
<mysql-connector-j.version>8.0.31</mysql-connector-j.version>
<postgresql.version>42.5.0</postgresql.version>
<db2.version>11.5.7.0</db2.version>
<oracle.version>19.16.0.0</oracle.version>
Expand Down
6 changes: 3 additions & 3 deletions spring-batch-core/pom.xml
Expand Up @@ -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>
Expand Down
Expand Up @@ -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);
Expand Down
Expand Up @@ -56,7 +56,7 @@
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);
Expand Down