File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ description = "chainbase – a decentralized database for blockchain."
22
33// Dependency versions
44// ---------------------------------------
5- def jacocoVersion = " 0.8.0"
65def jansiVersion = " 1.16"
76// --------------------------------------
87
4241}
4342
4443jacoco {
45- toolVersion = jacocoVersion // See http://www.eclemma.org/jacoco/.
44+ toolVersion = rootProject . ext . jacocoVersion // See http://www.eclemma.org/jacoco/.
4645}
4746
4847jacocoTestReport {
Original file line number Diff line number Diff line change 11ext {
2+ jacocoVersion = " 0.8.8"
23 jacocoNeedFilterClasses = [
34 ' org/tron/core/net/message/adv/**' ,
45 ' org/tron/core/net/message/base/**' ,
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ def versions = [
1818]
1919
2020jacoco {
21- toolVersion = " 0.8.8 "
21+ toolVersion = rootProject . ext . jacocoVersion
2222}
2323
2424tasks. withType(Test ) {
@@ -160,7 +160,7 @@ jacocoTestReport {
160160 */
161161
162162offlinsCoverage {
163- jacocoVersion = ' 0.8.8 ' // Optional. By default `0.8.8`
163+ jacocoVersion = rootProject . ext . jacocoVersion // Optional. By default `0.8.8`
164164
165165 reports {
166166 html. enabled. set true // Optional. By default `true`
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ apply plugin: 'application'
66apply plugin : ' checkstyle'
77
88jacoco {
9- toolVersion = " 0.8.8 "
9+ toolVersion = rootProject . ext . jacocoVersion
1010}
1111def versions = [
1212 checkstyle : ' 8.7' ,
You can’t perform that action at this time.
0 commit comments