Hey all,

As a new gradle user this area has tripped me up a number of times.
Spot the error:

test {
        exclude = '**/*IntegrationTest.java'
}

The property is called excludes not exclude:

test {
        excludes = '**/*IntegrationTest.java'
}

It would be less powerful and more newbie-friendly to be able to fail
when a task property does not exist. Perhaps the ability to turn off
the dynamic property creation for debugging purposes?

Cheers,
Merlyn

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

    http://xircles.codehaus.org/manage_email


Reply via email to