mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 01:41:11 +01:00
Create standalone code coverage aggregation module
Co-authored-by: napoly <napolytan@protonmail.com>
This commit is contained in:
parent
4cf54cd5e0
commit
1045511049
26
code-coverage-report/build.gradle
Normal file
26
code-coverage-report/build.gradle
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
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
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -16,5 +16,6 @@ include 'desktop'
|
|||||||
include 'seednode'
|
include 'seednode'
|
||||||
include 'statsnode'
|
include 'statsnode'
|
||||||
include 'apitest'
|
include 'apitest'
|
||||||
|
include 'code-coverage-report'
|
||||||
|
|
||||||
rootProject.name = 'bisq'
|
rootProject.name = 'bisq'
|
||||||
|
Loading…
Reference in New Issue
Block a user