Repository: bigtop Updated Branches: refs/heads/master a68768cdb -> 3426835fb
BIGTOP-1220. Gradle task order isn't enforced properly with dependsOn Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/e636fbf4 Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/e636fbf4 Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/e636fbf4 Branch: refs/heads/master Commit: e636fbf41a082b57d7d84de34ed79156f0f3d249 Parents: a68768c Author: Konstantin Boudnik <[email protected]> Authored: Fri Mar 7 16:56:18 2014 -0800 Committer: Konstantin Boudnik <[email protected]> Committed: Fri Mar 7 16:56:18 2014 -0800 ---------------------------------------------------------------------- build.gradle | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/bigtop/blob/e636fbf4/build.gradle ---------------------------------------------------------------------- diff --git a/build.gradle b/build.gradle index b3271d9..8fd6270 100644 --- a/build.gradle +++ b/build.gradle @@ -34,7 +34,9 @@ task installAllLocalArtifacts() { } -installAllLocalArtifacts.dependsOn installCommon, installConf, installTestArtifacts, installiTest, installTopLevel +installTestArtifacts.mustRunAfter installiTest +installiTest.mustRunAfter installTopLevel +installAllLocalArtifacts.dependsOn installTopLevel, installCommon, installConf, installiTest, installTestArtifacts repositories { maven { url "http://mvn01.shef.wandisco.com:8081/artifactory/libs-snapshot-local" }
