Ok, but in the same context, how to create in Kotl...
# gradle
a
Ok, but in the same context, how to create in Kotlin-dsl deps such as this in gradle?
Copy code
robolectric : dependencies.create("...") {
    exclude group: 'org.assertj'
},
g
Can you give more context, don’t understand this syntax
a
this is the way in Gradle to create custom dependencies and letting you exclude some groups from it, so I wanted to know if that's possible in Kotlin-dsl
g
Oh, I got it. It's definitely possible
a
@gildor if you know how, would be nice to know as well 🙂