Skip to content

Commit

Permalink
chore(test-container): upgrade all test container dependencies to avo…
Browse files Browse the repository at this point in the history
…id potential failure.

See related issue: testcontainers/testcontainers-java#3166
  • Loading branch information
JoshOY committed Oct 15, 2020
1 parent 600765d commit b1145f0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -98,12 +98,12 @@ subprojects {
testImplementation "org.mockito:mockito-core:3.3.3"
testImplementation "org.awaitility:awaitility:4.0.3"
testImplementation "net.bytebuddy:byte-buddy:1.10.10"
testImplementation "org.testcontainers:testcontainers:1.14.3"
testImplementation "org.testcontainers:mongodb:1.14.3"
testImplementation "org.testcontainers:postgresql:1.14.3"
testImplementation "org.testcontainers:elasticsearch:1.14.3"
testImplementation "org.testcontainers:neo4j:1.14.3"
testImplementation "com.github.goodforgod:arangodb-testcontainer:1.1.0"
testImplementation "org.testcontainers:testcontainers:1.15.0-rc2"
testImplementation "org.testcontainers:mongodb:1.15.0-rc2"
testImplementation "org.testcontainers:postgresql:1.15.0-rc2"
testImplementation "org.testcontainers:elasticsearch:1.15.0-rc2"
testImplementation "org.testcontainers:neo4j:1.15.0-rc2"
testImplementation "com.github.goodforgod:arangodb-testcontainer:1.2.0"
testImplementation "org.mock-server:mockserver-netty:3.10.8"
testImplementation "org.mock-server:mockserver-client-java:3.10.8"
testImplementation 'org.apache.dubbo:dubbo-registry-default:2.7.8'
Expand Down
2 changes: 1 addition & 1 deletion kun-commons/kun-commons-db/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dependencies {
implementation "com.zaxxer:HikariCP"
implementation "org.flywaydb:flyway-core"
implementation "org.neo4j:neo4j-ogm-core"
implementation "org.testcontainers:neo4j:1.14.3"
implementation "org.testcontainers:neo4j:1.15.0-rc2"

runtime 'org.neo4j:neo4j-ogm-bolt-driver:3.2.16' // Only add if you're using the Bolt driver

Expand Down
2 changes: 1 addition & 1 deletion kun-data-discovery/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ dependencies {
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
testImplementation 'org.testcontainers:postgresql:1.14.3'
testImplementation 'org.testcontainers:postgresql:1.15.0-rc2'
testImplementation 'com.h2database:h2'
// end::tests[]
}
Expand Down
2 changes: 1 addition & 1 deletion kun-workflow/kun-workflow-scheduler/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ dependencies {
implementation project(":kun-workflow:kun-workflow-common")
implementation project(":kun-workflow:kun-workflow-utils")
implementation "org.neo4j:neo4j-ogm-core"
implementation "org.testcontainers:neo4j:1.14.3"
implementation "org.testcontainers:neo4j:1.15.0-rc2"

testImplementation project(":kun-commons:kun-commons-testing")
testImplementation project(":kun-workflow:kun-workflow-testing")
Expand Down

0 comments on commit b1145f0

Please sign in to comment.