In my case, it's: 1. create `Configurations` obj...
# gradle
b
In my case, it's: 1. create
Configurations
object 2. extend it with pre-defined configurations by using
val Configurations.compile by Configuration()
3. extend it in the userspace with the same syntax 4. provide
dependencies
object with lambda called on
Configurations
object (to allow referencing properties of
Configurations
without prefixing them) 5. ??? 6. Profit! 😄