Skip to content

Commit 4a7eedc

Browse files
author
ondrej.basler
committed
Fix deprecated dependencyProject
1 parent 5d53478 commit 4a7eedc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/com/github/ivancarras/graphfity/plugin/task/GraphfityTask.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ abstract class GraphfityTask : DefaultTask() {
105105
project.configurations.forEach { config ->
106106
config.dependencies
107107
.withType(ProjectDependency::class.java)
108-
.map { it.dependencyProject }
108+
.map { project.project(it.path) }
109109
.filterNot { project == it.project }
110110
.forEach { dependencyProject ->
111111
val dependencyProjectNodeData = mapProjectToNode(dependencyProject, nodeTypes)

0 commit comments

Comments
 (0)