Table of Contents
API Documentation: | PublicationContainer |
---|
A PublicationContainer
is responsible for creating and managing Publication
instances.
The set of available publication types is dependent on the application of particular plugins:
- The
MavenPublishPlugin
makes it possible to createMavenPublication
instances. - The
IvyPublishPlugin
makes it possible to createIvyPublication
instances.
apply plugin: 'ivy-publish' publishing.publications.create('publication-name', IvyPublication) { // Configure the ivy publication here }
The usual way to add publications is via a configuration block.
See the documentation for PublishingExtension.publications(org.gradle.api.Action)
for examples of how to create and configure publications.