darkmoon_uk
08/19/2020, 12:47 PMdependsOn(gradle.includedBuild("someNamedBuild").task(":build"))
...but I get:
Could not determine the dependencies of task ':build'.
> Task with path ':build' not found in project ':someNamedBuild'.
Even though build
is a task in that included build - I can even see it listed if I instead do:
dependsOn(gradle.includedBuild("someNamedBuild").task(":tasks"))
...which successfully lists the available tasks for someNamedBuild
, including build
.cristiangm
08/19/2020, 11:11 PM:
just "build"
?no
08/20/2020, 8:54 AM