Skip to content

Commit a3304ec

Browse files
author
Simon Stone
committed
[FAB-16707] Remove Gradle warnings
Both Jacoco and Docker are causing Gradle warnings. Fix the Jacoco configuration, and update the Docker plugin for Gradle. Signed-off-by: Simon Stone <[email protected]> Change-Id: I4ace2213580f9e8598f7f284fab7443e353471c8
1 parent 88b9397 commit a3304ec

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

fabric-chaincode-docker/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ buildscript {
1313
mavenCentral()
1414
}
1515
dependencies {
16-
classpath 'com.bmuschko:gradle-docker-plugin:4.10.0'
16+
classpath 'com.bmuschko:gradle-docker-plugin:5.1.0'
1717
}
1818
}
1919

fabric-chaincode-shim/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jacoco {
6767

6868
jacocoTestReport {
6969
afterEvaluate {
70-
classDirectories = files(classDirectories.files.collect {
70+
classDirectories.from = files(classDirectories.files.collect {
7171
fileTree(dir: it, exclude: 'org/hyperledger/fabric/protos/**')
7272
})
7373
}

0 commit comments

Comments
 (0)