mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
1045511049
Co-authored-by: napoly <napolytan@protonmail.com>
27 lines
552 B
Groovy
27 lines
552 B
Groovy
plugins {
|
|
id 'base'
|
|
id 'jacoco-report-aggregation'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url "https://jitpack.io" }
|
|
}
|
|
|
|
dependencies {
|
|
jacocoAggregation project(':apitest')
|
|
jacocoAggregation project(':cli')
|
|
jacocoAggregation project(':daemon')
|
|
jacocoAggregation project(':desktop')
|
|
jacocoAggregation project(':seednode')
|
|
jacocoAggregation project(':statsnode')
|
|
}
|
|
|
|
reporting {
|
|
reports {
|
|
testCodeCoverageReport(JacocoCoverageReport) {
|
|
testType = TestSuiteType.UNIT_TEST
|
|
}
|
|
}
|
|
}
|