I\'m new to groovy and gradle and was wondering whether someone knew why my scriplet wasn\'t working (edit actually it does work but the warning still appears). This section is
Untill the IntelliJ bug is fixed, there is a workaround: use doFirst instead of <<.
task hellofun() { doFirst { [silly:'billy'].each { k, v -> println "$k=$v" } } }
Thanks for submitting the bug :)