-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathbuild.gradle
29 lines (24 loc) · 1011 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
29
plugins {
id("io.qameta.allure") version "2.11.2"
}
dependencies {
api project(":model")
testImplementation project(":admin-client")
testImplementation project(":block")
// http client
implementation "io.ktor:ktor-client-cio:$ktorVer"
implementation "io.ktor:ktor-client-websockets:$ktorVer"
implementation "io.ktor:ktor-client-logging:$ktorVer"
implementation "io.ktor:ktor-client-content-negotiation:$ktorVer"
implementation "io.ktor:ktor-serialization-jackson:$ktorVer"
implementation "io.ktor:ktor-client-auth:$ktorVer"
testApi project(":test-tools")
testImplementation "org.jetbrains.kotlin:kotlin-test-junit5:$kotlinVer"
testImplementation("com.github.docker-java:docker-java:3.4.0")
testImplementation("io.qameta.allure:allure-testng:2.29.0")
testImplementation "org.testcontainers:testcontainers:$testContainersVer"
}
jacocoTestReport {
mustRunAfter(":admin-client:jacocoTestReport")
mustRunAfter(":block:jacocoTestReport")
}