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 81
81
jythonVersion = ' 2.7.2'
82
82
kryoShadedVersion = ' 4.0.2'
83
83
lettuceVersion = ' 6.1.5.RELEASE'
84
- log4jVersion = ' 2.14.1 '
84
+ log4jVersion = ' 2.16.0 '
85
85
mailVersion = ' 1.6.7'
86
86
micrometerVersion = ' 1.7.6'
87
87
mockitoVersion = ' 3.12.4'
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =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
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
6
- distributionSha256Sum =de8f52ad49bdc759164f72439a3bf56ddb1589c4cde802d3cec7d6ad0e0ee410
Original file line number Diff line number Diff line change 19
19
import org .testcontainers .containers .MySQLContainer ;
20
20
import org .testcontainers .junit .jupiter .Container ;
21
21
import org .testcontainers .junit .jupiter .Testcontainers ;
22
+ import org .testcontainers .utility .DockerImageName ;
22
23
23
24
import org .springframework .integration .test .util .TestUtils ;
24
25
@@ -34,7 +35,9 @@ public interface MySqlContainerTest {
34
35
35
36
@ Container
36
37
MySQLContainer <?> MY_SQL_CONTAINER =
37
- new MySQLContainer <>(TestUtils .dockerRegistryFromEnv () + "mysql:latest" )
38
+ new MySQLContainer <>(
39
+ DockerImageName .parse (TestUtils .dockerRegistryFromEnv () + "mysql" )
40
+ .asCompatibleSubstituteFor ("mysql" ))
38
41
.withReuse (true );
39
42
40
43
You can’t perform that action at this time.
0 commit comments