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:
parent
d87625c9f0
commit
fe8c9d394d
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue