There is no such thing as an "ordered dependsOn list" in Gradle. task a(dependsOn: [b, c])
is simply a shorthand for task a a.dependsOn(b) a.dependsOn(c) To turn this into a sequence, do: task a a.dependsOn(b) b.dependsOn(c) Isn't this good enough in your case? -- Peter Niederwieser Principal Engineer, Gradleware http://gradleware.com Creator, Spock Framework http://spockframework.org Twitter: @pniederw -- View this message in context: http://gradle.1045684.n5.nabble.com/dependency-ordering-tp4597282p4597645.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
