Add all platform/arch configurations to artifactory publishable set

This commit is contained in:
Seth Goings 2014-07-24 14:25:49 -06:00
parent 7e68630136
commit 1258d6cde0

View File

@ -45,7 +45,9 @@ model {
} }
assemble { assemble {
dependsOn "build${platform.name}" platforms.each {
dependsOn it
}
} }
} }
} }
@ -150,7 +152,9 @@ artifactory {
} }
defaults { defaults {
publications 'linux-x86_64' platforms.each {
publications it.name
}
} }
} }
} }