Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions cli/flamingock-cli/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -50,16 +50,16 @@ dependencies {
testImplementation("org.mockito:mockito-core:5.8.0")
testImplementation("org.mockito:mockito-junit-jupiter:5.8.0")
testImplementation("org.assertj:assertj-core:3.24.2")
testImplementation("org.testcontainers:junit-jupiter:1.19.3")
testImplementation("org.testcontainers:mongodb:1.19.3")
testImplementation("org.testcontainers:couchbase:1.19.3")
testImplementation("org.testcontainers:testcontainers-junit-jupiter:2.0.2")
testImplementation("org.testcontainers:testcontainers-mongodb:2.0.2")
testImplementation("org.testcontainers:testcontainers-couchbase:2.0.2")
testImplementation("com.github.stefanbirkner:system-lambda:1.2.1")
// SQL Testcontainers
testImplementation("org.testcontainers:mysql:1.19.3")
testImplementation("org.testcontainers:mssqlserver:1.19.3")
testImplementation("org.testcontainers:oracle-xe:1.19.3")
testImplementation("org.testcontainers:postgresql:1.19.3")
testImplementation("org.testcontainers:mariadb:1.19.3")
testImplementation("org.testcontainers:testcontainers-mysql:2.0.2")
testImplementation("org.testcontainers:testcontainers-mssqlserver:2.0.2")
testImplementation("org.testcontainers:testcontainers-oracle-xe:2.0.2")
testImplementation("org.testcontainers:testcontainers-postgresql:2.0.2")
testImplementation("org.testcontainers:testcontainers-mariadb:2.0.2")

}

Expand Down
4 changes: 2 additions & 2 deletions community/flamingock-auditstore-couchbase/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ dependencies {

compileOnly("com.couchbase.client:java-client:3.6.0")

testImplementation("org.testcontainers:couchbase:1.21.3")
testImplementation("org.testcontainers:junit-jupiter:1.21.3")
testImplementation("org.testcontainers:testcontainers-couchbase:2.0.2")
testImplementation("org.testcontainers:testcontainers-junit-jupiter:2.0.2")
}

description = "Couchbase audit store implementation for distributed change auditing"
Expand Down
4 changes: 2 additions & 2 deletions community/flamingock-auditstore-dynamodb/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ dependencies {
testImplementation(project(":core:target-systems:nontransactional-target-system"))

testImplementation("software.amazon.awssdk:url-connection-client:2.24.11")
testImplementation("org.testcontainers:junit-jupiter:1.19.0")
testImplementation("org.testcontainers:testcontainers:1.19.0")
testImplementation("org.testcontainers:testcontainers-junit-jupiter:2.0.2")
testImplementation("org.testcontainers:testcontainers:2.0.2")

// Mongock
testImplementation("io.mongock:mongock-standalone:5.5.0")
Expand Down
4 changes: 2 additions & 2 deletions community/flamingock-auditstore-mongodb-sync/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ dependencies {
testImplementation(project(":utils:test-util"))
testImplementation(project(":core:target-systems:nontransactional-target-system"))
testImplementation(project(":e2e:core-e2e"))
testImplementation("org.testcontainers:mongodb:1.18.3")
testImplementation("org.testcontainers:junit-jupiter:1.18.3")
testImplementation("org.testcontainers:testcontainers-mongodb:2.0.2")
testImplementation("org.testcontainers:testcontainers-junit-jupiter:2.0.2")
testImplementation("org.mockito:mockito-inline:4.11.0")

testImplementation("io.mongock:mongock-standalone:5.5.0")
Expand Down
12 changes: 6 additions & 6 deletions community/flamingock-auditstore-sql/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ dependencies {
testImplementation("com.oracle.database.jdbc:ojdbc8:21.9.0.0")
testImplementation("org.postgresql:postgresql:42.7.3")
testImplementation("org.mariadb.jdbc:mariadb-java-client:3.3.2")
testImplementation("org.testcontainers:mysql:1.21.3")
testImplementation("org.testcontainers:mssqlserver:1.21.3")
testImplementation("org.testcontainers:oracle-xe:1.21.3")
testImplementation("org.testcontainers:postgresql:1.21.3")
testImplementation("org.testcontainers:mariadb:1.21.3")
testImplementation("org.testcontainers:testcontainers-mysql:2.0.2")
testImplementation("org.testcontainers:testcontainers-mssqlserver:2.0.2")
testImplementation("org.testcontainers:testcontainers-oracle-xe:2.0.2")
testImplementation("org.testcontainers:testcontainers-postgresql:2.0.2")
testImplementation("org.testcontainers:testcontainers-mariadb:2.0.2")
testImplementation(project(":utils:test-util"))
testImplementation("com.zaxxer:HikariCP:3.4.5")
testImplementation("org.testcontainers:junit-jupiter:1.21.3")
testImplementation("org.testcontainers:testcontainers-junit-jupiter:2.0.2")
testImplementation("com.h2database:h2:2.2.224")
testImplementation("org.mockito:mockito-inline:4.11.0")
testImplementation("org.xerial:sqlite-jdbc:3.41.2.1")
Expand Down
4 changes: 2 additions & 2 deletions core/target-systems/couchbase-target-system/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ dependencies {
compileOnly("com.couchbase.client:java-client:3.6.0")

//Test
testImplementation("org.testcontainers:couchbase:1.21.3")
testImplementation("org.testcontainers:junit-jupiter:1.21.3")
testImplementation("org.testcontainers:testcontainers-couchbase:2.0.2")
testImplementation("org.testcontainers:testcontainers-junit-jupiter:2.0.2")

testImplementation(project(":cloud:flamingock-cloud"))
testImplementation(project(":utils:test-util"))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ dependencies {
compileOnly("org.springframework.data:spring-data-mongodb:${versions["spring-data"]}")

//Test
testImplementation("org.testcontainers:mongodb:1.18.3")
testImplementation("org.testcontainers:junit-jupiter:1.18.3")
testImplementation("org.testcontainers:testcontainers-mongodb:2.0.2")
testImplementation("org.testcontainers:testcontainers-junit-jupiter:2.0.2")

testImplementation(project(":cloud:flamingock-cloud"))
testImplementation(project(":utils:test-util"))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ dependencies {
compileOnly("org.mongodb:mongodb-driver-sync:4.0.0")

//Test
testImplementation("org.testcontainers:mongodb:1.18.3")
testImplementation("org.testcontainers:junit-jupiter:1.18.3")
testImplementation("org.testcontainers:testcontainers-mongodb:2.0.2")
testImplementation("org.testcontainers:testcontainers-junit-jupiter:2.0.2")

testImplementation(project(":cloud:flamingock-cloud"))
testImplementation(project(":utils:test-util"))
Expand Down
10 changes: 5 additions & 5 deletions core/target-systems/sql-target-system/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ dependencies {
implementation(project(":utils:sql-util"))

//Test
testImplementation("org.testcontainers:testcontainers-mysql:2.0.1")
testImplementation("org.testcontainers:testcontainers-postgresql:2.0.1")
testImplementation("org.testcontainers:testcontainers-mssqlserver:2.0.1")
testImplementation("org.testcontainers:testcontainers-oracle-free:2.0.1")
testImplementation("org.testcontainers:testcontainers-mysql:2.0.2")
testImplementation("org.testcontainers:testcontainers-postgresql:2.0.2")
testImplementation("org.testcontainers:testcontainers-mssqlserver:2.0.2")
testImplementation("org.testcontainers:testcontainers-oracle-free:2.0.2")
testImplementation("mysql:mysql-connector-java:8.0.33")
testImplementation("org.postgresql:postgresql:42.7.8")
testImplementation("com.microsoft.sqlserver:mssql-jdbc:13.2.1.jre8")
Expand All @@ -19,7 +19,7 @@ dependencies {
testImplementation("com.h2database:h2:2.2.220")
testImplementation("org.apache.derby:derbytools:10.15.2.0")
testImplementation("org.firebirdsql.jdbc:jaybird:5.0.10.java8")
testImplementation("org.testcontainers:junit-jupiter:1.18.3")
testImplementation("org.testcontainers:testcontainers-junit-jupiter:2.0.2")

testImplementation(project(":cloud:flamingock-cloud"))
testImplementation(project(":utils:test-util"))
Expand Down
4 changes: 2 additions & 2 deletions legacy/mongock-importer-couchbase/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ dependencies {
testImplementation(project(":utils:couchbase-util"))
testImplementation(project(":utils:test-util"))

testImplementation("org.testcontainers:couchbase:1.21.3")
testImplementation("org.testcontainers:junit-jupiter:1.21.3")
testImplementation("org.testcontainers:testcontainers-couchbase:2.0.2")
testImplementation("org.testcontainers:testcontainers-junit-jupiter:2.0.2")
testImplementation("org.mockito:mockito-inline:4.11.0")
}

Expand Down
4 changes: 2 additions & 2 deletions legacy/mongock-importer-dynamodb/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ dependencies {

testImplementation(project(":utils:test-util"))

testImplementation("org.testcontainers:junit-jupiter:1.18.3")
testImplementation("org.testcontainers:testcontainers-junit-jupiter:2.0.2")
testImplementation("org.mockito:mockito-inline:4.11.0")
testImplementation("org.testcontainers:localstack:1.19.7")
testImplementation("org.testcontainers:testcontainers-localstack:2.0.2")
testImplementation("software.amazon.awssdk:dynamodb:2.25.61")

testImplementation("org.mockito:mockito-inline:4.11.0")
Expand Down
4 changes: 2 additions & 2 deletions legacy/mongock-importer-mongodb/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ dependencies {
testImplementation(project(":utils:test-util"))
testImplementation(project(":utils:mongodb-util"))

testImplementation("org.testcontainers:mongodb:1.18.3")
testImplementation("org.testcontainers:testcontainers-mongodb:2.0.2")

testImplementation("org.testcontainers:junit-jupiter:1.18.3")
testImplementation("org.testcontainers:testcontainers-junit-jupiter:2.0.2")
testImplementation("org.mockito:mockito-inline:4.11.0")

}
Expand Down
4 changes: 2 additions & 2 deletions templates/flamingock-mongodb-sync-template/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ dependencies {
testImplementation(project(":community:flamingock-auditstore-mongodb-sync"))
testImplementation(project(":utils:test-util"))
testImplementation(project(":utils:mongodb-util"))
testImplementation("org.testcontainers:mongodb:1.18.3")
testImplementation("org.testcontainers:junit-jupiter:1.18.3")
testImplementation("org.testcontainers:testcontainers-mongodb:2.0.2")
testImplementation("org.testcontainers:testcontainers-junit-jupiter:2.0.2")
}

description = "MongoDB change templates for document database operations"
Expand Down
4 changes: 2 additions & 2 deletions utils/dynamodb-util/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ dependencies {
api(project(":utils:general-util"))

// TestContainers for DynamoDB testing
api("org.testcontainers:testcontainers:1.19.3")
api("org.testcontainers:junit-jupiter:1.19.3")
api("org.testcontainers:testcontainers:2.0.2")
api("org.testcontainers:testcontainers-junit-jupiter:2.0.2")

}

Expand Down
12 changes: 6 additions & 6 deletions utils/sql-util/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ java {

dependencies {
implementation("com.zaxxer:HikariCP:3.4.5")
implementation("org.testcontainers:junit-jupiter:1.19.3")
implementation("org.testcontainers:testcontainers-junit-jupiter:2.0.2")
// SQL Testcontainers
implementation("org.testcontainers:mysql:1.19.3")
implementation("org.testcontainers:mssqlserver:1.19.3")
implementation("org.testcontainers:oracle-xe:1.19.3")
implementation("org.testcontainers:postgresql:1.19.3")
implementation("org.testcontainers:mariadb:1.19.3")
implementation("org.testcontainers:testcontainers-mysql:2.0.2")
implementation("org.testcontainers:testcontainers-mssqlserver:2.0.2")
implementation("org.testcontainers:testcontainers-oracle-xe:2.0.2")
implementation("org.testcontainers:testcontainers-postgresql:2.0.2")
implementation("org.testcontainers:testcontainers-mariadb:2.0.2")
}
Loading