Skip to content

Commit a07ff14

Browse files
Merge branch 'main' into feat/mysql-r2dbc-helper
2 parents d345111 + 3fe0976 commit a07ff14

File tree

11 files changed

+16
-16
lines changed

11 files changed

+16
-16
lines changed

modules/azure/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dependencies {
44
api project(':testcontainers')
55
api project(':testcontainers-mssqlserver')
66
// TODO use JDK's HTTP client and/or Apache HttpClient5
7-
shaded 'com.squareup.okhttp3:okhttp:5.1.0'
7+
shaded 'com.squareup.okhttp3:okhttp:5.3.2'
88

99
testImplementation platform("com.azure:azure-sdk-bom:1.2.32")
1010
testImplementation 'com.azure:azure-cosmos'

modules/couchbase/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description = "Testcontainers :: Couchbase"
33
dependencies {
44
api project(':testcontainers')
55
// TODO use JDK's HTTP client and/or Apache HttpClient5
6-
shaded 'com.squareup.okhttp3:okhttp:5.1.0'
6+
shaded 'com.squareup.okhttp3:okhttp:5.3.2'
77

88
testImplementation 'com.couchbase.client:java-client:3.9.1'
99
testImplementation 'org.awaitility:awaitility:4.3.0'

modules/jdbc-test/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ dependencies {
1111
api 'org.apache.tomcat:tomcat-jdbc:11.0.14'
1212
api 'org.vibur:vibur-dbcp:26.0'
1313
api 'com.mysql:mysql-connector-j:9.5.0'
14-
api 'org.junit.jupiter:junit-jupiter:5.13.4'
14+
api 'org.junit.jupiter:junit-jupiter:5.14.1'
1515
}

modules/junit-jupiter/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@ description = "Testcontainers :: JUnit Jupiter Extension"
22

33
dependencies {
44
api project(':testcontainers')
5-
implementation platform('org.junit:junit-bom:5.13.4')
5+
implementation platform('org.junit:junit-bom:5.14.1')
66
implementation 'org.junit.jupiter:junit-jupiter-api'
77

88
testImplementation project(':testcontainers-mysql')
99
testImplementation project(':testcontainers-postgresql')
1010
testImplementation 'com.zaxxer:HikariCP:7.0.2'
11-
testImplementation 'redis.clients:jedis:6.2.0'
11+
testImplementation 'redis.clients:jedis:7.1.0'
1212
testImplementation 'org.apache.httpcomponents:httpclient:4.5.14'
1313
testImplementation ('org.mockito:mockito-core:4.11.0') {
1414
exclude(module: 'hamcrest-core')
1515
}
1616

1717
testRuntimeOnly 'org.postgresql:postgresql:42.7.8'
18-
testRuntimeOnly 'com.mysql:mysql-connector-j:8.2.0'
18+
testRuntimeOnly 'com.mysql:mysql-connector-j:9.5.0'
1919
}

modules/mysql/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dependencies {
77
compileOnly 'io.asyncer:r2dbc-mysql:1.4.1'
88

99
testImplementation project(':testcontainers-jdbc-test')
10-
testRuntimeOnly 'com.mysql:mysql-connector-j:8.2.0'
10+
testRuntimeOnly 'com.mysql:mysql-connector-j:9.5.0'
1111

1212
testImplementation testFixtures(project(':testcontainers-r2dbc'))
1313
testRuntimeOnly 'io.asyncer:r2dbc-mysql:1.4.1'

modules/oceanbase/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ dependencies {
44
api project(':testcontainers-jdbc')
55

66
testImplementation project(':testcontainers-jdbc-test')
7-
testRuntimeOnly 'com.mysql:mysql-connector-j:8.2.0'
7+
testRuntimeOnly 'com.mysql:mysql-connector-j:9.5.0'
88
}

modules/orientdb/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ description = "Testcontainers :: Orientdb"
33
dependencies {
44
api project(":testcontainers")
55

6-
api "com.orientechnologies:orientdb-client:3.2.44"
6+
api "com.orientechnologies:orientdb-client:3.2.46"
77

8-
testImplementation 'org.apache.tinkerpop:gremlin-driver:3.7.4'
9-
testImplementation "com.orientechnologies:orientdb-gremlin:3.2.44"
8+
testImplementation 'org.apache.tinkerpop:gremlin-driver:3.8.0'
9+
testImplementation "com.orientechnologies:orientdb-gremlin:3.2.46"
1010
}

modules/r2dbc/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ dependencies {
1313

1414
testFixturesImplementation 'io.projectreactor:reactor-core:3.7.11'
1515
testFixturesImplementation 'org.assertj:assertj-core:3.27.6'
16-
testFixturesImplementation 'org.junit.jupiter:junit-jupiter:5.13.4'
16+
testFixturesImplementation 'org.junit.jupiter:junit-jupiter:5.14.1'
1717
}

modules/solr/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description = "Testcontainers :: Solr"
33
dependencies {
44
api project(':testcontainers')
55
// TODO use JDK's HTTP client and/or Apache HttpClient5
6-
shaded 'com.squareup.okhttp3:okhttp:5.1.0'
6+
shaded 'com.squareup.okhttp3:okhttp:5.3.2'
77

88
testImplementation 'org.apache.solr:solr-solrj:8.11.4'
99
}

modules/spock/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ dependencies {
1616
testImplementation 'org.apache.httpcomponents:httpclient:4.5.14'
1717

1818
testRuntimeOnly 'org.postgresql:postgresql:42.7.8'
19-
testRuntimeOnly 'com.mysql:mysql-connector-j:8.2.0'
20-
testRuntimeOnly platform('org.junit:junit-bom:5.13.4')
19+
testRuntimeOnly 'com.mysql:mysql-connector-j:9.5.0'
20+
testRuntimeOnly platform('org.junit:junit-bom:5.14.1')
2121
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
2222
testRuntimeOnly 'org.junit.platform:junit-platform-testkit'
2323

0 commit comments

Comments
 (0)