From fe8c9d394dd3ba26b73089912672aff8f5b23bba Mon Sep 17 00:00:00 2001 From: Ryan Ernst Date: Thu, 4 Feb 2016 13:03:03 -0800 Subject: [PATCH] Build: Do not publish modules Modules are an internal implementation detail of our build, and there is no need to publish them with gradle. This change disables publishing of all modules. --- modules/build.gradle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/build.gradle b/modules/build.gradle index 4b88dfd703f..3cafe7d903f 100644 --- a/modules/build.gradle +++ b/modules/build.gradle @@ -40,4 +40,8 @@ subprojects { throw new InvalidModelException("Modules cannot disable isolation") } } + + // these are implementation details of our build, no need to publish them! + install.enabled = false + uploadArchives.enabled = false }