jre
05/24/2017, 4:42 AMvoid hello() {
println "Hello World!"
}
Child build.gradle:
// Will print Hello World when gradle is invoked
hello()
This no longer works for kotlin based build scripts, the method reference is just considered as undefined.
Any idea how can I best fill this gap? Should I raise an issue for such use case?