-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathbuild.gradle
28 lines (24 loc) · 921 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
description = "Testcontainers :: JUnit Jupiter Extension"
dependencies {
api project(':testcontainers')
implementation platform('org.junit:junit-bom:5.10.3')
implementation 'org.junit.jupiter:junit-jupiter-api'
testImplementation project(':mysql')
testImplementation project(':postgresql')
testImplementation 'com.zaxxer:HikariCP:6.3.0'
testImplementation 'redis.clients:jedis:5.1.5'
testImplementation 'org.apache.httpcomponents:httpclient:4.5.14'
testImplementation ('org.mockito:mockito-core:4.11.0') {
exclude(module: 'hamcrest-core')
}
testImplementation 'org.assertj:assertj-core:3.26.3'
testImplementation 'org.junit.jupiter:junit-jupiter'
testRuntimeOnly 'org.postgresql:postgresql:42.7.4'
testRuntimeOnly 'mysql:mysql-connector-java:8.0.33'
}
test {
useJUnitPlatform()
testLogging {
events "passed", "skipped", "failed"
}
}