I am using the gretty plugin in Gradle.
It works, I can list tasks, for example appRun, and complete them.
But no tasks were found when I try to add a dependency using
apply plugin 'war'
apply from: 'https://raw.github.com/akhikhl/gretty/master/pluginScripts/gretty.plugin'
transpileScss << {
...
}
tasks.appRun.dependsOn transpileScss
I get:
Could not find property 'appRun' on task set.
What's happening? How to add dependency on the tasks of the Gretty plugin?
source
share