Skip to content

Commit

Permalink
Merge pull request #7715 from testcontainers/combined-pr-branch
Browse files Browse the repository at this point in the history
Combined dependencies PR
  • Loading branch information
eddumelendez committed Oct 24, 2023
2 parents 5ea69b0 + 2816eb4 commit 454fafa
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
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'
}

0 comments on commit 454fafa

Please sign in to comment.