Interface ConfigurationPublications

  • All Superinterfaces:
    HasAttributes, HasConfigurableAttributes<ConfigurationPublications>

    @Incubating
    public interface ConfigurationPublications
    extends HasConfigurableAttributes<ConfigurationPublications>
    Represents the outgoing artifacts associated with a configuration. These artifacts are used when the configuration is referenced during dependency resolution.

    You can use this interface associate artifacts with a configuration using the artifact(Object) methods. You can also define several variants of the configuration's artifacts. Each variant represents a set of artifacts that form some mutually exclusive usage of the component.

    An implicit variant is defined for a configuration whenever any artifacts are attached directly to this object or inherited from another configuration.

    Since:
    3.3
    • Method Detail

      • getArtifacts

        PublishArtifactSet getArtifacts()
        Returns the artifacts associated with this configuration. When an artifact is added to this set, an implicit variant is defined for the configuration. These artifacts are also inherited by all configurations that extend this configuration.
      • artifact

        void artifact​(Object notation)
        Adds an outgoing artifact to this configuration. This artifact is included in all variants.

        See ArtifactHandler for details of the supported notations.

      • artifact

        void artifact​(Object notation,
                      Action<? super ConfigurablePublishArtifact> configureAction)
        Adds an outgoing artifact to this configuration, configuring it using the given action. This artifact is included in all variants.

        See ArtifactHandler for details of the supported notations.