-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathbuild.gradle
More file actions
19 lines (16 loc) · 735 Bytes
/
build.gradle
File metadata and controls
19 lines (16 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
description = "Testcontainers :: JUnit Jupiter Extension"
dependencies {
api project(':testcontainers')
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:7.1.0'
testImplementation 'org.apache.httpcomponents:httpclient:4.5.14'
testImplementation ('org.mockito:mockito-core:4.11.0') {
exclude(module: 'hamcrest-core')
}
testRuntimeOnly 'org.postgresql:postgresql:42.7.9'
testRuntimeOnly 'com.mysql:mysql-connector-j:9.5.0'
}