aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorKonstantin Boudnik <cos@apache.org>2014-03-07 16:56:18 -0800
committerKonstantin Boudnik <cos@apache.org>2014-03-07 16:56:18 -0800
commite636fbf41a082b57d7d84de34ed79156f0f3d249 (patch)
tree73a1474ae9e4123832301fabfdfc420418eb63d1 /build.gradle
parenta68768cdbdbefaaa589ea846e96a5c8ea233e85a (diff)
BIGTOP-1220. Gradle task order isn't enforced properly with dependsOn
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle4
1 files changed, 3 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle
index b3271d91..8fd62708 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" }