File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed
spring-integration-jdbc/src/test/java/org/springframework/integration/jdbc/mysql Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 8181 jythonVersion = ' 2.7.2'
8282 kryoShadedVersion = ' 4.0.2'
8383 lettuceVersion = ' 6.1.5.RELEASE'
84- log4jVersion = ' 2.14.1 '
84+ log4jVersion = ' 2.16.0 '
8585 mailVersion = ' 1.6.7'
8686 micrometerVersion = ' 1.7.6'
8787 mockitoVersion = ' 3.12.4'
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =wrapper/dists
3- distributionUrl =https\://services.gradle.org/distributions/gradle-7.3-bin.zip
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-7.3.1 -bin.zip
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =wrapper/dists
6- distributionSha256Sum =de8f52ad49bdc759164f72439a3bf56ddb1589c4cde802d3cec7d6ad0e0ee410
Original file line number Diff line number Diff line change 1919import org .testcontainers .containers .MySQLContainer ;
2020import org .testcontainers .junit .jupiter .Container ;
2121import org .testcontainers .junit .jupiter .Testcontainers ;
22+ import org .testcontainers .utility .DockerImageName ;
2223
2324import org .springframework .integration .test .util .TestUtils ;
2425
@@ -34,7 +35,9 @@ public interface MySqlContainerTest {
3435
3536 @ Container
3637 MySQLContainer <?> MY_SQL_CONTAINER =
37- new MySQLContainer <>(TestUtils .dockerRegistryFromEnv () + "mysql:latest" )
38+ new MySQLContainer <>(
39+ DockerImageName .parse (TestUtils .dockerRegistryFromEnv () + "mysql" )
40+ .asCompatibleSubstituteFor ("mysql" ))
3841 .withReuse (true );
3942
4043
You can’t perform that action at this time.
0 commit comments