Interface Configuration

    • Method Detail

      • getResolutionStrategy

        ResolutionStrategy getResolutionStrategy()
        Returns the resolution strategy used by this configuration. The resolution strategy provides extra details on how to resolve this configuration. See docs for ResolutionStrategy for more info and examples.
        Returns:
        resolution strategy
        Since:
        1.0-milestone-6
        Implementation Requirements:
        Usage: This method should only be called on resolvable configurations, but will not warn if used otherwise.
      • resolutionStrategy

        Configuration resolutionStrategy​(@DelegatesTo(value=ResolutionStrategy.class,strategy=1)
                                         Closure closure)
        The resolution strategy provides extra details on how to resolve this configuration. See docs for ResolutionStrategy for more info and examples.
        Parameters:
        closure - closure applied to the ResolutionStrategy
        Returns:
        this configuration instance
        Since:
        1.0-milestone-6
        Implementation Requirements:
        Usage: This method should only be called on resolvable configurations, but will not warn if used otherwise.
      • resolutionStrategy

        Configuration resolutionStrategy​(Action<? super ResolutionStrategy> action)
        The resolution strategy provides extra details on how to resolve this configuration. See docs for ResolutionStrategy for more info and examples.
        Parameters:
        action - action applied to the ResolutionStrategy
        Returns:
        this configuration instance
        Since:
        3.1
        Implementation Requirements:
        Usage: This method should only be called on resolvable configurations, but will not warn if used otherwise.
      • getState

        Configuration.State getState()
        Returns the state of the configuration.
        Returns:
        The state of the configuration
        See Also:
        Configuration.State
        Implementation Requirements:
        Usage: This method should only be called on resolvable configurations, but will not warn if used otherwise.
      • isVisible

        boolean isVisible()
        Returns true if this is a visible configuration. A visible configuration is usable outside the project it belongs to. The default value is true.
        Returns:
        true if this is a visible configuration.
      • setVisible

        Configuration setVisible​(boolean visible)
        Sets the visibility of this configuration. When visible is set to true, this configuration is visible outside the project it belongs to. The default value is true.
        Parameters:
        visible - true if this is a visible configuration
        Returns:
        this configuration
        Implementation Requirements:
        Usage: This method should only be called on consumable configurations, but will not warn if used otherwise.
      • getExtendsFrom

        java.util.Set<Configuration> getExtendsFrom()
        Returns the names of the configurations which this configuration extends from. The artifacts of the super configurations are also available in this configuration.
        Returns:
        The super configurations. Returns an empty set when this configuration does not extend any others.
      • setExtendsFrom

        Configuration setExtendsFrom​(java.lang.Iterable<Configuration> superConfigs)
        Sets the configurations which this configuration extends from.
        Parameters:
        superConfigs - The super configuration. Should not be null.
        Returns:
        this configuration
      • extendsFrom

        Configuration extendsFrom​(Configuration... superConfigs)
        Adds the given configurations to the set of configuration which this configuration extends from.
        Parameters:
        superConfigs - The super configurations.
        Returns:
        this configuration
      • isTransitive

        boolean isTransitive()
        Returns the transitivity of this configuration. A transitive configuration contains the transitive closure of its direct dependencies, and all their dependencies. An intransitive configuration contains only the direct dependencies. The default value is true.
        Returns:
        true if this is a transitive configuration, false otherwise.
      • setTransitive

        Configuration setTransitive​(boolean t)
        Sets the transitivity of this configuration. When set to true, this configuration will contain the transitive closure of its dependencies and their dependencies. The default value is true.
        Parameters:
        t - true if this is a transitive configuration.
        Returns:
        this configuration
      • getDescription

        @Nullable
        java.lang.String getDescription()
        Returns the description for this configuration.
        Returns:
        the description. May be null.
      • setDescription

        Configuration setDescription​(@Nullable
                                     java.lang.String description)
        Sets the description for this configuration.
        Parameters:
        description - the description. May be null
        Returns:
        this configuration
      • getHierarchy

        java.util.Set<Configuration> getHierarchy()
        Gets an ordered set including this configuration and all superconfigurations recursively.
        Returns:
        the set of all configurations
      • resolve

        java.util.Set<java.io.File> resolve()
        Resolves this configuration. This locates and downloads the files which make up this configuration, and returns the resulting set of files.
        Returns:
        The files of this configuration.
        Implementation Requirements:
        Usage: This method should only be called on resolvable configurations and will emit a deprecation warning if called on a configuration that does not permit this usage, or has allowed this usage but marked it as deprecated.
      • files

        @Deprecated
        java.util.Set<java.io.File> files​(Closure dependencySpecClosure)
        Deprecated.
        Use getIncoming().artifactView(Action) with a componentFilter instead.
        Takes a closure which gets coerced into a Spec. Behaves otherwise in the same way as files(org.gradle.api.specs.Spec).
        Parameters:
        dependencySpecClosure - The closure describing a filter applied to the all the dependencies of this configuration (including dependencies from extended configurations).
        Returns:
        The files of a subset of dependencies of this configuration.
        Implementation Requirements:
        Usage: This method should only be called on resolvable configurations and should fail if called on a configuration that does not permit this usage. It should warn if called on a configuration that has allowed this usage but marked it as deprecated.
      • files

        @Deprecated
        java.util.Set<java.io.File> files​(Spec<? super Dependency> dependencySpec)
        Deprecated.
        Use getIncoming().artifactView(Action) with a componentFilter instead.
        Resolves this configuration. This locates and downloads the files which make up this configuration. But only the resulting set of files belonging to the subset of dependencies specified by the dependencySpec is returned.
        Parameters:
        dependencySpec - The spec describing a filter applied to the all the dependencies of this configuration (including dependencies from extended configurations).
        Returns:
        The files of a subset of dependencies of this configuration.
        Implementation Requirements:
        Usage: This method should only be called on resolvable configurations and should fail if called on a configuration that does not permit this usage. It should warn if called on a configuration that has allowed this usage but marked it as deprecated.
      • files

        @Deprecated
        java.util.Set<java.io.File> files​(Dependency... dependencies)
        Deprecated.
        Use getIncoming().artifactView(Action) with a componentFilter instead.
        Resolves this configuration. This locates and downloads the files which make up this configuration. But only the resulting set of files belonging to the specified dependencies is returned.
        Parameters:
        dependencies - The dependencies to be resolved
        Returns:
        The files of a subset of dependencies of this configuration.
        Implementation Requirements:
        Usage: This method should only be called on resolvable configurations and should fail if called on a configuration that does not permit this usage. It should warn if called on a configuration that has allowed this usage but marked it as deprecated.
      • fileCollection

        @Deprecated
        FileCollection fileCollection​(Spec<? super Dependency> dependencySpec)
        Deprecated.
        Use getIncoming().artifactView(Action) with a componentFilter instead.
        Resolves this configuration lazily. The resolve happens when the elements of the returned FileCollection get accessed the first time. This locates and downloads the files which make up this configuration. Only the resulting set of files belonging to the subset of dependencies specified by the dependencySpec is contained in the FileCollection.
        Parameters:
        dependencySpec - The spec describing a filter applied to the all the dependencies of this configuration (including dependencies from extended configurations).
        Returns:
        The FileCollection with a subset of dependencies of this configuration.
        Implementation Requirements:
        Usage: This method should only be called on resolvable configurations and should fail if called on a configuration that does not permit this usage. It should warn if called on a configuration that has allowed this usage but marked it as deprecated.
      • fileCollection

        @Deprecated
        FileCollection fileCollection​(Closure dependencySpecClosure)
        Deprecated.
        Use getIncoming().artifactView(Action) with a componentFilter instead.
        Takes a closure which gets coerced into a Spec. Behaves otherwise in the same way as fileCollection(org.gradle.api.specs.Spec).
        Parameters:
        dependencySpecClosure - The closure describing a filter applied to the all the dependencies of this configuration (including dependencies from extended configurations).
        Returns:
        The FileCollection with a subset of dependencies of this configuration.
        Implementation Requirements:
        Usage: This method should only be called on resolvable configurations and should fail if called on a configuration that does not permit this usage. It should warn if called on a configuration that has allowed this usage but marked it as deprecated.
      • fileCollection

        @Deprecated
        FileCollection fileCollection​(Dependency... dependencies)
        Deprecated.
        Use getIncoming().artifactView(Action) with a componentFilter instead.
        Resolves this configuration lazily. The resolve happens when the elements of the returned FileCollection get accessed the first time. This locates and downloads the files which make up this configuration. Only the resulting set of files belonging to specified dependencies is contained in the FileCollection.
        Parameters:
        dependencies - The dependencies for which the FileCollection should contain the files.
        Returns:
        The FileCollection with a subset of dependencies of this configuration.
        Implementation Requirements:
        Usage: This method should only be called on resolvable configurations and should fail if called on a configuration that does not permit this usage. It should warn if called on a configuration that has allowed this usage but marked it as deprecated.
      • getResolvedConfiguration

        ResolvedConfiguration getResolvedConfiguration()
        Resolves this configuration. This locates and downloads the files which make up this configuration, and returns a ResolvedConfiguration that may be used to determine information about the resolve (including errors).
        Returns:
        The ResolvedConfiguration object
        Implementation Requirements:
        Usage: This method should only be called on resolvable configurations and should fail if called on a configuration that does not permit this usage. It should warn if called on a configuration that has allowed this usage but marked it as deprecated.
      • getUploadTaskName

        @Deprecated
        java.lang.String getUploadTaskName()
        Deprecated.
        Returns the name of the task that upload the artifacts of this configuration to repositories declared by the user.
        Returns:
        The name of the associated upload task
        See Also:
        Upload
      • getBuildDependencies

        TaskDependency getBuildDependencies()
        Returns a TaskDependency object containing all required dependencies to build the local dependencies (e.g. project dependencies) belonging to this configuration or to one of its super configurations.
        Specified by:
        getBuildDependencies in interface Buildable
        Returns:
        a TaskDependency object
        Implementation Requirements:
        Usage: This method should only be called on resolvable configurations, but will not warn if used otherwise.
      • getTaskDependencyFromProjectDependency

        TaskDependency getTaskDependencyFromProjectDependency​(boolean useDependedOn,
                                                              java.lang.String taskName)
        Returns a TaskDependency object containing dependencies on all tasks with the specified name from project dependencies related to this configuration or one of its super configurations. These other projects may be projects this configuration depends on or projects with a similarly named configuration that depend on this one based on the useDependOn argument.
        Parameters:
        useDependedOn - if true, add tasks from project dependencies in this configuration, otherwise use projects from configurations with the same name that depend on this one.
        taskName - name of task to depend on
        Returns:
        the populated TaskDependency object
      • getDependencies

        DependencySet getDependencies()
        Gets the set of declared dependencies directly contained in this configuration (ignoring superconfigurations).

        This method does not resolve the configuration. Therefore, the return value does not include transitive dependencies.

        Returns:
        the set of dependencies
        See Also:
        extendsFrom(Configuration...)
        Implementation Requirements:
        Usage: This method should only be called on declarable configurations, but will not warn if used otherwise.
      • getAllDependencies

        DependencySet getAllDependencies()
        Gets the complete set of declared dependencies including those contributed by superconfigurations.

        This method does not resolve the configuration. Therefore, the return value does not include transitive dependencies.

        Returns:
        the (read-only) set of dependencies
        See Also:
        extendsFrom(Configuration...)
      • getDependencyConstraints

        DependencyConstraintSet getDependencyConstraints()
        Gets the set of dependency constraints directly contained in this configuration (ignoring superconfigurations).
        Returns:
        the set of dependency constraints
        Since:
        4.6
        Implementation Requirements:
        Usage: This method should only be called on declarable configurations, but will not warn if used otherwise.
      • getAllDependencyConstraints

        DependencyConstraintSet getAllDependencyConstraints()

        Gets the complete set of dependency constraints including those contributed by superconfigurations.

        Returns:
        the (read-only) set of dependency constraints
        Since:
        4.6
      • fromDependencyCollector

        @Incubating
        default void fromDependencyCollector​(DependencyCollector collector)
        Use the given collector as a source for dependencies and dependency constraints.
        Parameters:
        collector - the collector to use
        Since:
        8.7
      • getArtifacts

        PublishArtifactSet getArtifacts()
        Returns the artifacts of this configuration excluding the artifacts of extended configurations.
        Returns:
        The set.
        Implementation Requirements:
        Usage: This method should only be called on consumable configurations, but will not warn if used otherwise.
      • getAllArtifacts

        PublishArtifactSet getAllArtifacts()
        Returns the artifacts of this configuration including the artifacts of extended configurations.
        Returns:
        The (read-only) set.
      • getExcludeRules

        java.util.Set<ExcludeRule> getExcludeRules()
        Returns the exclude rules applied for resolving any dependency of this configuration.
        Returns:
        The exclude rules
        See Also:
        exclude(java.util.Map)
      • exclude

        Configuration exclude​(java.util.Map<java.lang.String,​java.lang.String> excludeProperties)
        Adds an exclude rule to exclude transitive dependencies for all dependencies of this configuration. You can also add exclude rules per-dependency. See ModuleDependency.exclude(java.util.Map).
        Parameters:
        excludeProperties - the properties to define the exclude rule.
        Returns:
        this
      • defaultDependencies

        Configuration defaultDependencies​(Action<? super DependencySet> action)
        Execute the given action if the configuration has no defined dependencies when it first participates in dependency resolution. A Configuration will participate in dependency resolution when: This method is useful for specifying default dependencies for a configuration:
         configurations { conf }
         configurations['conf'].defaultDependencies { dependencies ->
              dependencies.add(owner.project.dependencies.create("org.gradle:my-util:1.0"))
         }
         

        A Configuration is considered empty even if it extends another, non-empty Configuration.

        If multiple actions are supplied, each action will be executed until the set of dependencies is no longer empty. Remaining actions will be ignored.

        Parameters:
        action - the action to execute when the configuration has no defined dependencies.
        Returns:
        this
        Implementation Requirements:
        Usage: This method should only be called on resolvable configurations and will emit a deprecation warning if called on a configuration that does not permit this usage, or has allowed this usage but marked it as deprecated.
      • withDependencies

        Configuration withDependencies​(Action<? super DependencySet> action)
        Execute the given action before the configuration first participates in dependency resolution. A Configuration will participate in dependency resolution when: This method is useful for mutating the dependencies for a configuration:
         configurations { conf }
         configurations['conf'].withDependencies { dependencies ->
              dependencies.each { dependency ->
                  if (dependency.version == null) {
                      dependency.version { require '1.0' }
                  }
              }
         }
         
        Actions will be executed in the order provided.
        Parameters:
        action - a dependency action to execute before the configuration is used.
        Returns:
        this
        Since:
        4.4
      • getAll

        @Deprecated
        java.util.Set<Configuration> getAll()
        Deprecated.
        Returns all the configurations belonging to the same configuration container as this configuration (including this configuration).
        Returns:
        All the configurations belonging to the configuration container that this set belongs to itself.
      • getIncoming

        ResolvableDependencies getIncoming()
        Returns the incoming dependencies of this configuration.
        Returns:
        The incoming dependencies of this configuration. Never null.
        Implementation Requirements:
        Usage: This method should only be called on consumable and resolvable configurations, but will not warn if used otherwise.
      • getOutgoing

        ConfigurationPublications getOutgoing()
        Returns the outgoing ConfigurationPublications instance that advertises and allows configuring the artifacts and variants published by this configuration.

        This allows adding additional artifacts and accessing and configuring variants to publish.

        Returns:
        The outgoing publications object containing artifacts and variants published by this configuration.
        Since:
        3.4
        Implementation Requirements:
        Usage: This method should only be called on consumable configurations, but will not warn if used otherwise.
      • outgoing

        void outgoing​(Action<? super ConfigurationPublications> action)
        Configures the outgoing ConfigurationPublications instance that advertises and allows configuring the artifacts and variants published by this configuration.
        Parameters:
        action - The action to perform the configuration.
        Since:
        3.4
        Implementation Requirements:
        Usage: This method should only be called on consumable configurations, but will not warn if used otherwise.
      • copy

        Configuration copy()
        Creates a copy of this configuration that only contains the dependencies directly in this configuration (without contributions from superconfigurations). The new configuration will be in the UNRESOLVED state, but will retain all other attributes of this configuration except superconfigurations. getHierarchy() for the copy will not include any superconfigurations.

        This method is only intended for use for specific situations involving resolvable configuration, it is NOT intended as a general-purpose copying mechanism.

        Returns:
        copy of this configuration
        Implementation Requirements:
        Usage: This method should only be called on resolvable configurations and will emit a deprecation warning if called on a configuration that does not permit this usage, or has allowed this usage but marked it as deprecated.
      • copyRecursive

        Configuration copyRecursive()
        Creates a copy of this configuration that contains the dependencies directly in this configuration and those derived from superconfigurations. The new configuration will be in the UNRESOLVED state, but will retain all other attributes of this configuration except superconfigurations. getHierarchy() for the copy will not include any superconfigurations.

        This method is only intended for use for specific situations involving resolvable configuration, it is NOT intended as a general-purpose copying mechanism.

        Returns:
        copy of this configuration
        Implementation Requirements:
        Usage: This method should only be called on resolvable configurations and will emit a deprecation warning if called on a configuration that does not permit this usage, or has allowed this usage but marked it as deprecated.
      • copy

        Configuration copy​(Spec<? super Dependency> dependencySpec)
        Creates a copy of this configuration ignoring superconfigurations (see copy() but filtering the dependencies using the specified dependency spec.

        This method is only intended for use for specific situations involving resolvable configuration, it is NOT intended as a general-purpose copying mechanism.

        Parameters:
        dependencySpec - filtering requirements
        Returns:
        copy of this configuration
        Implementation Requirements:
        Usage: This method should only be called on resolvable configurations and will emit a deprecation warning if called on a configuration that does not permit this usage, or has allowed this usage but marked it as deprecated.
      • copyRecursive

        Configuration copyRecursive​(Spec<? super Dependency> dependencySpec)
        Creates a copy of this configuration with dependencies from superconfigurations (see copyRecursive()) but filtering the dependencies using the dependencySpec.

        This method is only intended for use for specific situations involving resolvable configuration, it is NOT intended as a general-purpose copying mechanism.

        Parameters:
        dependencySpec - filtering requirements
        Returns:
        copy of this configuration
        Implementation Requirements:
        Usage: This method should only be called on resolvable configurations and will emit a deprecation warning if called on a configuration that does not permit this usage, or has allowed this usage but marked it as deprecated.
      • copy

        Configuration copy​(Closure dependencySpec)
        Takes a closure which gets coerced into a Spec. Behaves otherwise in the same way as copy(org.gradle.api.specs.Spec)

        This method is only intended for use for specific situations involving resolvable configuration, it is NOT intended as a general-purpose copying mechanism.

        Parameters:
        dependencySpec - filtering requirements
        Returns:
        copy of this configuration
        Implementation Requirements:
        Usage: This method should only be called on resolvable configurations and will emit a deprecation warning if called on a configuration that does not permit this usage, or has allowed this usage but marked it as deprecated.
      • copyRecursive

        Configuration copyRecursive​(Closure dependencySpec)
        Takes a closure which gets coerced into a Spec. Behaves otherwise in the same way as copyRecursive(org.gradle.api.specs.Spec)

        This method is only intended for use for specific situations involving resolvable configuration, it is NOT intended as a general-purpose copying mechanism.

        Parameters:
        dependencySpec - filtering requirements
        Returns:
        copy of this configuration
        Implementation Requirements:
        Usage: This method should only be called on resolvable configurations and will emit a deprecation warning if called on a configuration that does not permit this usage, or has allowed this usage but marked it as deprecated.
      • setCanBeConsumed

        void setCanBeConsumed​(boolean allowed)
        Configures if a configuration can be consumed.
        Since:
        3.3
      • isCanBeConsumed

        boolean isCanBeConsumed()
        Returns true if this configuration can be consumed from another project, or published. Defaults to true.
        Returns:
        true if this configuration can be consumed or published.
        Since:
        3.3
      • setCanBeResolved

        void setCanBeResolved​(boolean allowed)
        Configures if a configuration can be resolved.
        Since:
        3.3
      • isCanBeResolved

        boolean isCanBeResolved()
        Returns true if it is allowed to query or resolve this configuration. Defaults to true.
        Returns:
        true if this configuration can be queried or resolved.
        Since:
        3.3
      • setCanBeDeclared

        @Incubating
        void setCanBeDeclared​(boolean allowed)
        Configures if a configuration can have dependencies declared upon it.
        Since:
        8.2
      • isCanBeDeclared

        @Incubating
        boolean isCanBeDeclared()
        Returns true if it is allowed to declare dependencies upon this configuration. Defaults to true.
        Returns:
        true if this configuration can have dependencies declared
        Since:
        8.2
      • shouldResolveConsistentlyWith

        @Incubating
        Configuration shouldResolveConsistentlyWith​(Configuration versionsSource)
        Tells that this configuration, when resolved, should resolve versions consistently from the resolution result of another resolvable configuration. For example, it's expected that the versions of the runtime classpath are the same as the versions from the compile classpath.
        Parameters:
        versionsSource - another resolvable configuration to use as reference for versions
        Returns:
        this configuration
        Since:
        6.8
        Implementation Requirements:
        Usage: This method should only be called on resolvable configurations and will emit a deprecation warning if called on a configuration that does not permit this usage, or has had allowed this usage but marked it as deprecated.
      • disableConsistentResolution

        @Incubating
        Configuration disableConsistentResolution()
        Disables consistent resolution for this configuration.
        Since:
        6.8
        Implementation Requirements:
        Usage: This method should only be called on resolvable configurations and will emit a deprecation warning if called on a configuration that does not permit this usage, or has had allowed this usage but marked it as deprecated.