Skip to content

Commit

Permalink
Merge pull request #4288 from testcontainers/combined-pr-branch
Browse files Browse the repository at this point in the history
  • Loading branch information
rnorth committed Jul 16, 2021
2 parents f4c1add + a43ab70 commit a4a475f
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -147,13 +147,13 @@ dependencies {
testImplementation files('testlib/repo/fakejar/fakejar/0/fakejar-0.jar')

testImplementation 'org.rnorth.visible-assertions:visible-assertions:2.1.2'
testImplementation 'org.assertj:assertj-core:3.19.0'
testImplementation 'org.assertj:assertj-core:3.20.2'
testImplementation project(':test-support')

jarFileTestCompileOnly "org.projectlombok:lombok:${lombok.version}"
jarFileTestAnnotationProcessor "org.projectlombok:lombok:${lombok.version}"
jarFileTestImplementation 'junit:junit:4.12'
jarFileTestImplementation 'org.assertj:assertj-core:3.18.1'
jarFileTestImplementation 'org.assertj:assertj-core:3.20.2'
jarFileTestImplementation 'org.ow2.asm:asm-debug-all:5.2'
}

Expand Down
2 changes: 1 addition & 1 deletion examples/redis-backed-cache-testng/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.30'
implementation 'redis.clients:jedis:3.6.0'
implementation 'redis.clients:jedis:3.6.1'
implementation 'com.google.code.gson:gson:2.8.7'
implementation 'com.google.guava:guava:23.0'
testImplementation 'org.testcontainers:testcontainers'
Expand Down
2 changes: 1 addition & 1 deletion examples/redis-backed-cache/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.30'
implementation 'redis.clients:jedis:3.6.0'
implementation 'redis.clients:jedis:3.6.1'
implementation 'com.google.code.gson:gson:2.8.7'
implementation 'com.google.guava:guava:23.0'
testImplementation 'org.testcontainers:testcontainers'
Expand Down
2 changes: 1 addition & 1 deletion examples/singleton-container/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repositories {

dependencies {

implementation 'redis.clients:jedis:3.6.0'
implementation 'redis.clients:jedis:3.6.1'
implementation 'com.google.code.gson:gson:2.8.7'
implementation 'com.google.guava:guava:23.0'
compileOnly 'org.slf4j:slf4j-api:1.7.30'
Expand Down
2 changes: 1 addition & 1 deletion modules/database-commons/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ description = "Testcontainers :: Database-Commons"
dependencies {
api project(':testcontainers')

testImplementation 'org.assertj:assertj-core:3.19.0'
testImplementation 'org.assertj:assertj-core:3.20.2'
}
2 changes: 1 addition & 1 deletion modules/dynalite/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description = "Testcontainers :: Dynalite"
dependencies {
api project(':testcontainers')

compileOnly 'com.amazonaws:aws-java-sdk-dynamodb:1.11.1030'
compileOnly 'com.amazonaws:aws-java-sdk-dynamodb:1.12.16'
testImplementation 'com.amazonaws:aws-java-sdk-dynamodb:1.11.1030'

testImplementation 'org.rnorth.visible-assertions:visible-assertions:2.1.2'
Expand Down
2 changes: 1 addition & 1 deletion modules/jdbc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dependencies {
compileOnly 'org.jetbrains:annotations:21.0.1'
testImplementation 'commons-dbutils:commons-dbutils:1.7'
testImplementation 'org.vibur:vibur-dbcp:25.0'
testImplementation 'org.apache.tomcat:tomcat-jdbc:10.0.6'
testImplementation 'org.apache.tomcat:tomcat-jdbc:10.0.8'
testImplementation 'com.zaxxer:HikariCP-java6:2.3.13'
testImplementation 'com.googlecode.junit-toolbox:junit-toolbox:2.4'
testImplementation 'org.rnorth.visible-assertions:visible-assertions:2.1.2'
Expand Down
4 changes: 2 additions & 2 deletions modules/localstack/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ dependencies {

compileOnly 'com.amazonaws:aws-java-sdk-s3:1.12.16'
testImplementation 'com.amazonaws:aws-java-sdk-s3:1.11.1030'
testImplementation 'com.amazonaws:aws-java-sdk-sqs:1.12.1'
testImplementation 'com.amazonaws:aws-java-sdk-sqs:1.12.19'
testImplementation 'com.amazonaws:aws-java-sdk-logs:1.12.16'
testImplementation 'software.amazon.awssdk:s3:2.16.80'
testImplementation 'software.amazon.awssdk:s3:2.16.97'
testImplementation 'org.rnorth.visible-assertions:visible-assertions:2.1.2'
}

0 comments on commit a4a475f

Please sign in to comment.