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
2 changes: 1 addition & 1 deletion modules/jdbc-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ dependencies {
api 'org.apache.tomcat:tomcat-jdbc:11.0.14'
api 'org.vibur:vibur-dbcp:26.0'
api 'com.mysql:mysql-connector-j:9.5.0'
api 'org.junit.jupiter:junit-jupiter:5.13.4'
api 'org.junit.jupiter:junit-jupiter:5.14.1'
}
4 changes: 2 additions & 2 deletions modules/junit-jupiter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ description = "Testcontainers :: JUnit Jupiter Extension"

dependencies {
api project(':testcontainers')
implementation platform('org.junit:junit-bom:5.13.4')
implementation platform('org.junit:junit-bom:5.14.1')
implementation 'org.junit.jupiter:junit-jupiter-api'

testImplementation project(':testcontainers-mysql')
testImplementation project(':testcontainers-postgresql')
testImplementation 'com.zaxxer:HikariCP:7.0.2'
testImplementation 'redis.clients:jedis:6.2.0'
testImplementation 'redis.clients:jedis:7.1.0'
testImplementation 'org.apache.httpcomponents:httpclient:4.5.14'
testImplementation ('org.mockito:mockito-core:4.11.0') {
exclude(module: 'hamcrest-core')
Expand Down
2 changes: 1 addition & 1 deletion modules/r2dbc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ dependencies {

testFixturesImplementation 'io.projectreactor:reactor-core:3.7.11'
testFixturesImplementation 'org.assertj:assertj-core:3.27.6'
testFixturesImplementation 'org.junit.jupiter:junit-jupiter:5.13.4'
testFixturesImplementation 'org.junit.jupiter:junit-jupiter:5.14.1'
}
2 changes: 1 addition & 1 deletion modules/spock/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dependencies {

testRuntimeOnly 'org.postgresql:postgresql:42.7.8'
testRuntimeOnly 'com.mysql:mysql-connector-j:9.5.0'
testRuntimeOnly platform('org.junit:junit-bom:5.13.4')
testRuntimeOnly platform('org.junit:junit-bom:5.14.1')
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
testRuntimeOnly 'org.junit.platform:junit-platform-testkit'

Expand Down
Loading