File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
plugins/jacoco-gradle-plugin/src/main/groovy/org/kordamp/gradle/plugin/jacoco Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -258,10 +258,10 @@ class JacocoPlugin extends AbstractKordampPlugin {
258
258
Set<Project > projects = [project] as Set
259
259
260
260
if (config. coverage. jacoco. includeProjectDependencies) {
261
- project. configurations. findByName(testTask. name + ' Implementation' ). allDependencies. each { d ->
261
+ project. configurations. findByName(testTask. name + ' Implementation' )? . allDependencies? . each { d ->
262
262
if (d instanceof ProjectDependency ) projects << d. dependencyProject
263
263
}
264
- project. configurations. findByName(testTask. name + ' RuntimeOnly' ). allDependencies. each { d ->
264
+ project. configurations. findByName(testTask. name + ' RuntimeOnly' )? . allDependencies? . each { d ->
265
265
if (d instanceof ProjectDependency ) projects << d. dependencyProject
266
266
}
267
267
}
You can’t perform that action at this time.
0 commit comments