From 296440a4db8ee45dd79be220bc9505e9c99a040d Mon Sep 17 00:00:00 2001 From: Jihun Cho Date: Thu, 31 Oct 2019 16:18:30 -0700 Subject: [PATCH] interop-testing,benchmarks: publish tar, zip --- benchmarks/build.gradle | 9 +++++++++ interop-testing/build.gradle | 9 +++++++++ 2 files changed, 18 insertions(+) diff --git a/benchmarks/build.gradle b/benchmarks/build.gradle index 7aef7870e3..444f36477f 100644 --- a/benchmarks/build.gradle +++ b/benchmarks/build.gradle @@ -100,3 +100,12 @@ applicationDistribution.into("bin") { from(benchmark_worker) fileMode = 0755 } + +publishing { + publications { + maven(MavenPublication) { + artifact distZip + artifact distTar + } + } +} diff --git a/interop-testing/build.gradle b/interop-testing/build.gradle index 12c571e31c..b11ed26ebc 100644 --- a/interop-testing/build.gradle +++ b/interop-testing/build.gradle @@ -120,3 +120,12 @@ applicationDistribution.into("bin") { from(grpclb_long_lived_affinity_test_client) fileMode = 0755 } + +publishing { + publications { + maven(MavenPublication) { + artifact distZip + artifact distTar + } + } +}