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
d50df8f49f
commit
6c81985d41
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 'statsnode'
|
||||
include 'apitest'
|
||||
include 'code-coverage-report'
|
||||
|
||||
rootProject.name = 'bisq'
|
||||
|
Loading…
Reference in New Issue
Block a user