I guess I want to override the default instead of ...
# gradle
a
I guess I want to override the default instead of creating a new config.
e
What about the following?
Copy code
configurations {
  compile {
    exclude(group = "com.sleepycat", module = "je")
  }
}
a
well I'm trying to not fall back to the Groovy syntax
But maybe I should do as you suggest
e
the above is just Kotlin
using the Gradle Kotlin DSL
a
Ah I see, exclude is an extension function in that case
👍 1
Thanks