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.
This commit is contained in:
Ryan Ernst 2016-02-04 13:03:03 -08:00
parent d87625c9f0
commit fe8c9d394d
1 changed files with 4 additions and 0 deletions

View File

@ -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
}