-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathbuild.gradle
More file actions
27 lines (23 loc) · 1.04 KB
/
build.gradle
File metadata and controls
27 lines (23 loc) · 1.04 KB
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
dependencies {
api project(":client")
api project(":admin-client")
api project(":block")
api "org.jetbrains.kotlin:kotlin-test:$kotlinVer"
api "org.jetbrains.kotlin:kotlin-test-junit5:$kotlinVer"
api "org.jetbrains.kotlin:kotlin-reflect:$kotlinVer"
api "org.testcontainers:testcontainers:$testContainersVer"
api "org.jetbrains.kotlin:kotlin-test-junit5:$kotlinVer"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVer"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:$coroutinesVer"
implementation "ch.qos.logback:logback-classic:$logbackVer"
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlinVer"
implementation "org.yaml:snakeyaml:2.3"
testImplementation "org.jetbrains.kotlin:kotlin-test:$kotlinVer"
}
jacocoTestReport {
mustRunAfter(":admin-client:jacocoTestReport")
mustRunAfter(":block:jacocoTestReport")
mustRunAfter(":client:jacocoTestReport")
mustRunAfter(":codegen:jacocoTestReport")
mustRunAfter(":model:jacocoTestReport")
}