Repository: bigtop
Updated Branches:
  refs/heads/master 0bbfd8bd5 -> 95ff0128a


BIGTOP-1523. Gradle install for test artifacts uses wrong sequence of the 
targets


Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo
Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/95ff0128
Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/95ff0128
Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/95ff0128

Branch: refs/heads/master
Commit: 95ff0128a05b0b1a99adc2e7abd6c481aa2458db
Parents: 0bbfd8b
Author: Konstantin Boudnik <[email protected]>
Authored: Wed Nov 12 17:59:07 2014 -0800
Committer: Konstantin Boudnik <[email protected]>
Committed: Fri Nov 14 11:21:51 2014 -0800

----------------------------------------------------------------------
 build.gradle | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/bigtop/blob/95ff0128/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index cca237d..33ec6bd 100644
--- a/build.gradle
+++ b/build.gradle
@@ -76,10 +76,6 @@ def artifactToInstall = {
       description 'Installs ${artifact} artifact with Maven'
       def final PATH = "${ARTIFACT_DIR}/$artifact/pom.xml"
       def final WRAPPER = "mvn clean install -f " + PATH
-      installTopLevel
-      installCommon
-      installConf
-      installiTest
       exec {
         workingDir '.'
         commandLine WRAPPER.split(" ")
@@ -89,7 +85,7 @@ def artifactToInstall = {
 }
 
 project.afterEvaluate{
-  artifactToInstall()
+  artifactToInstall(dependsOn: [installTopLevel, installCommon, installConf, 
installiTest])
 }
 
 installTestArtifacts.mustRunAfter installiTest

Reply via email to