Hi,
I just had some problems with the new task definition dsl.

The following script will evaluate successfully when calling 'gradle b'. This 
means, that a task that is declared without "<<", will be executed in any case.

        def myVar = null
        
        task a {
                myVar = 'Task a was here'
        }
        
        task b << {
                assert myVar == 'Task a was here'
        }


Why has the dsl changed since Adam's last proposal (or did I miss something?).

Kind regards
Matthias

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

    http://xircles.codehaus.org/manage_email


Reply via email to