Groovy Documentation

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

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

@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.9-rc-1