forked from testcontainers/testcontainers-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
28 lines (24 loc) · 878 Bytes
/
build.gradle
File metadata and controls
28 lines (24 loc) · 878 Bytes
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 {
compile project(':testcontainers')
compile 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testCompile project(':mysql')
testCompile project(':postgresql')
testCompile 'com.zaxxer:HikariCP:3.4.5'
testCompile 'redis.clients:jedis:3.3.0'
testCompile 'org.apache.httpcomponents:httpclient:4.5.13'
testCompile ('org.mockito:mockito-core:5.0.0') {
exclude(module: 'hamcrest-core')
}
testCompile 'org.assertj:assertj-core:3.17.2'
testCompile 'org.junit.jupiter:junit-jupiter-params:5.7.0'
testRuntime 'org.postgresql:postgresql:42.2.17'
testRuntime 'mysql:mysql-connector-java:8.0.21'
testRuntime 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
}
test {
useJUnitPlatform()
testLogging {
events "passed", "skipped", "failed"
}
}