Within my root build.gradle.kts I want to enable s...
# gradle
d
Within my root build.gradle.kts I want to enable strict explicit API mode, but only for Kotlin projects, how can I do this?
d
Sorry I wasn't clear, that isn't the part I don't know how to do, its how to apply this only to kotlin projects from within
allProjects
b
allProjects
is best avoided, if possible. You're better off having convention plugins that you can load into individual projects that want them. That being said, you can probably do what you want using ideas found here.
👆 1
thank you color 1
d
Looks like convention plugins is the way to go
👌 1