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

Combined dependencies PR #7715

Merged
merged 7 commits into from
Oct 24, 2023
2 changes: 1 addition & 1 deletion examples/linked-container/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repositories {
dependencies {
compileOnly 'org.slf4j:slf4j-api:1.7.36'
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
implementation 'org.json:json:20230618'
implementation 'org.json:json:20231013'
testRuntimeOnly 'org.postgresql:postgresql:42.6.0'
testImplementation 'ch.qos.logback:logback-classic:1.3.11'
testImplementation 'org.testcontainers:postgresql'
Expand Down
2 changes: 1 addition & 1 deletion modules/elasticsearch/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ description = "Testcontainers :: elasticsearch"
dependencies {
api project(':testcontainers')
testImplementation "org.elasticsearch.client:elasticsearch-rest-client:8.10.4"
testImplementation "org.elasticsearch.client:transport:7.17.13"
testImplementation "org.elasticsearch.client:transport:7.17.14"
testImplementation 'org.assertj:assertj-core:3.24.2'
}
2 changes: 1 addition & 1 deletion modules/jdbc-test/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
dependencies {
api project(':jdbc')

api 'com.google.guava:guava:32.1.2-jre'
api 'com.google.guava:guava:32.1.3-jre'
api 'org.apache.commons:commons-lang3:3.13.0'
api 'com.zaxxer:HikariCP-java6:2.3.13'
api 'commons-dbutils:commons-dbutils:1.8.1'
Expand Down
4 changes: 2 additions & 2 deletions modules/mysql/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ dependencies {
api project(':jdbc')

compileOnly project(':r2dbc')
compileOnly 'io.asyncer:r2dbc-mysql:1.0.4'
compileOnly 'io.asyncer:r2dbc-mysql:1.0.5'

testImplementation project(':jdbc-test')
testRuntimeOnly 'mysql:mysql-connector-java:8.0.33'

testImplementation testFixtures(project(':r2dbc'))
testRuntimeOnly 'io.asyncer:r2dbc-mysql:1.0.4'
testRuntimeOnly 'io.asyncer:r2dbc-mysql:1.0.5'

compileOnly 'org.jetbrains:annotations:24.0.1'
}