given
dependencies {
compile project(':subproject') {
transitive = false
}
}
This does not work properly in gradle 1.3. (i.e. all dependencies are included from the subproject)
Is this a bug or is there a different syntax for excluding project dependencies?