ArtifactResolutionQuery

用于构建查询以解析指定组件的所选软件工件的构建器。

这是一个遗留 API,目前处于维护模式。在 Gradle 的未来版本中,此 API 将被弃用并移除。新代码不应使用此 API。对于解析 sources 和 javadoc,请优先使用 <UNHANDLED-LINK>ArtifactView.ViewConfiguration#withVariantReselection()</UNHANDLED-LINK>

plugins {
    id 'java'
}

task resolveCompileSources {
    doLast {
        def componentIds = configurations.compileClasspath.incoming.resolutionResult.allDependencies.collect { it.selected.id }

        def result = dependencies.createArtifactResolutionQuery()
                                 .forComponents(componentIds)
                                 .withArtifacts(JvmLibrary, SourcesArtifact, JavadocArtifact)
                                 .execute()

        for (component in result.resolvedComponents) {
            component.getArtifacts(SourcesArtifact).each { println "Source artifact for ${component.id}: ${it.file}" }
        }
    }
}

属性

无属性

方法

方法描述
execute()

实际执行查询,返回查询结果。请注意,在执行查询之前,必须调用 ArtifactResolutionQuery.withArtifacts(java.lang.Class, java.lang.Class[])

forComponents(componentIds)

指定结果中要包含的组件集。

forComponents(componentIds)

指定结果中要包含的组件集。

forModule(group, name, version)

使用其 GAV 坐标指定要包含在结果中的模块组件。

withArtifacts(componentType, artifactTypes)

定义结果中期望的组件类型,以及要为这种类型的组件检索的工件。目前,只允许使用单个组件类型和工件集。

withArtifacts(componentType, artifactTypes)

定义结果中期望的组件类型,以及要为这种类型的组件检索的工件。目前,只允许使用单个组件类型和工件集。

脚本块

无脚本块

方法详情

实际执行查询,返回查询结果。请注意,在执行查询之前,必须调用 ArtifactResolutionQuery.withArtifacts(java.lang.Class, java.lang.Class[])

ArtifactResolutionQuery forComponents(Iterable<? extends ComponentIdentifier> componentIds)

指定结果中要包含的组件集。

ArtifactResolutionQuery forComponents(ComponentIdentifier... componentIds)

指定结果中要包含的组件集。

ArtifactResolutionQuery forModule(String group, String name, String version)

使用其 GAV 坐标指定要包含在结果中的模块组件。

ArtifactResolutionQuery withArtifacts(Class<? extends Component> componentType, Class<? extends Artifact>... artifactTypes)

定义结果中期望的组件类型,以及要为这种类型的组件检索的工件。目前,只允许使用单个组件类型和工件集。

ArtifactResolutionQuery withArtifacts(Class<? extends Component> componentType, Collection<Class<? extends Artifact>> artifactTypes)

定义结果中期望的组件类型,以及要为这种类型的组件检索的工件。目前,只允许使用单个组件类型和工件集。