This message was deleted.
# dependency-management
s
This message was deleted.
t
omg I ran into that same error but hadn't gotten around to reporting it yet. I thought it was a Gradle error but didn't dig into it... For me, I had a main build and an included build in the same repo. Both the main and included build included another build (the same one) from outside the repo. It triggered the "TurnOffDefaultTasks" error
m
in this case it doesn't like the mix of composite builds which themselves have
buildSrc
I managed to workaround by moving everything out of
buildSrc
into composites, but with the kotlin DSL it's not fun (mostly because of the
libs
not accessible, but also because of inclusion of inclusion)
t
I'm shocked I don't see this at work, with a very similar setup. So far only on small sample projects where I'm testing various things