Slackbot
05/11/2023, 7:38 PMVampire
05/11/2023, 7:59 PMconfigurations.implementation {
dependencies.addLater(...)
}
or maybe with
configurations.implementation {
dependencies.whenObjectAdded(...)
}
Clayton Walker
05/11/2023, 8:01 PMClayton Walker
05/11/2023, 8:02 PMVampire
05/11/2023, 8:14 PMconfigurations.implementation {
withDependencies {
...
}
}
Vampire
05/11/2023, 8:14 PMdirectly checks what is declared and also allows you to add additional dependencies "lat minute" (i.e. right before the dependency resolution starts). This is what it was mainly introduced for.withDependencies