Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adding a dependency to a gretty task

I'm using the gretty plugin in Gradle.

It works, I can list the tasks, for example appRun, and execute them.

But the tasks aren't found when I try to add a dependency with

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 happens? How can I add a dependency to tasks of the Gretty plugin?

like image 398
Denys Séguret Avatar asked Nov 27 '15 15:11

Denys Séguret


1 Answers

Wrap your logic into a closure and pass it to project.afterEvaluate:

project.afterEvaluate {
   tasks.appRun.dependsOn transpileScss
}

Gretty tasks are added no sooner than project is evaluated.

like image 196
Opal Avatar answered Sep 26 '22 01:09

Opal