You don’t have code completion when writing Gradle plugin in Kotlin?
something broken than, works for me without issues
j
Justin
03/18/2019, 6:16 AM
No I'm talking about writing my own Gradle plugin
g
gildor
03/18/2019, 6:28 AM
So, you write own Gradle Plugin and you want that users of this plugin have code completion in Gradle Kotlin DSL configs, correct?
j
Justin
03/18/2019, 3:28 PM
That's correct
g
gildor
03/18/2019, 3:44 PM
If you will use recommended approaches for writing Gradle plugin you don't need any additional support, just define tasks, use extensions instead of conventions, avoid any dynamic groovy api
And Gradle will do most of work for you and Kotlin DSL consumers will have code complications if also follows recommendations