Groovy Documentation

org.gradle.api.publish
[Java] Interface PublicationContainer

org.gradle.api.publish.PublicationContainer
  org.gradle.api.ExtensiblePolymorphicDomainObjectContainer
      org.gradle.api.NamedDomainObjectCollection
          org.gradle.api.DomainObjectCollection
              org.gradle.api.NamedDomainObjectSet
                  java.lang.Iterable
                      org.gradle.util.Configurable
                          org.gradle.api.NamedDomainObjectContainer
                              java.util.Collection
                                  org.gradle.api.PolymorphicDomainObjectContainer
All Superinterfaces:
ExtensiblePolymorphicDomainObjectContainer, NamedDomainObjectCollection, DomainObjectCollection, NamedDomainObjectSet, Iterable, Configurable, NamedDomainObjectContainer, Collection, PolymorphicDomainObjectContainer

@Incubating
public interface PublicationContainer
extends ExtensiblePolymorphicDomainObjectContainer

A PublicationContainer is responsible for creating and managing Publication instances. The set of available publication types is dependent on the application of particular plugins:

 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 for examples of how to create and configure publications.
See Also:
Publication
PublishingExtension
Since:
1.3


Method Summary
 
Methods inherited from interface ExtensiblePolymorphicDomainObjectContainer
registerBinding, registerFactory, registerFactory
 
Methods inherited from interface PolymorphicDomainObjectContainer
create, create
 
Methods inherited from interface NamedDomainObjectContainer
configure, create, create, create, maybeCreate
 
Methods inherited from interface NamedDomainObjectSet
findAll, matching, matching, withType
 

Gradle API 1.8