Hi everyone,

I'm using gradle 0.9 preview 3 and the following build file :

apply plugin: 'java'
clean { println "in clean task" }
task foo << { println "in foo task" }

Executing the 'foo' task gives the following result :

C:\tmp>gradle foo
in clean task
:foo
in foo task
BUILD SUCCESSFUL
Total time: 2.313 secs

- Why is the 'clean' task executed even if it has no dependency with the
'foo' task ?
- What can I do to ONLY execute the 'foo' task ?

Thanks for helping... 
-- 
View this message in context: 
http://old.nabble.com/problem-with-java-plugin-%27clean%27-task-tp28994272p28994272.html
Sent from the gradle-user mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Reply via email to