From 1258d6cde00d25eb9cc43092670394f77b83317f Mon Sep 17 00:00:00 2001 From: Seth Goings Date: Thu, 24 Jul 2014 14:25:49 -0600 Subject: [PATCH] Add all platform/arch configurations to artifactory publishable set --- build.gradle | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index b547027bb0..77c2ad9872 100644 --- a/build.gradle +++ b/build.gradle @@ -45,7 +45,9 @@ model { } assemble { - dependsOn "build${platform.name}" + platforms.each { + dependsOn it + } } } } @@ -150,7 +152,9 @@ artifactory { } defaults { - publications 'linux-x86_64' + platforms.each { + publications it.name + } } } }