如何以编程方式将依赖项添加到Gradle配置?

前端之家收集整理的这篇文章主要介绍了如何以编程方式将依赖项添加到Gradle配置?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下代码

static def getFamilyDependencies(ConfigurationContainer configurations) {
    def result = configurations.collect { configuration ->
        configuration.allDependencies.findAll { dependency ->
            dependency instanceof DefaultProjectDependency
        } collect { projectDependency ->
            projectDependency.dependencyProject.name
        }
    } flatten()

    result as Set
}

我想测试一下.到目前为止,我有:

@Test
void shouldGetFamilyDependencies() {
    final Project project = ProjectBuilder.builder().build()

    final configurations = project.getConfigurations()

    configurations.create('configuration0')
    configurations.create('configuration1')

    configurations.each { configuration ->
        println "***************** ${configuration}"

        configuration.allDependencies.each {
            println "@@@@@@@@@@@@@@@@@ ${it}"
        }
    }
}

如何向配置添加依赖项?以下不起作用:

final Project subproject = ProjectBuilder.builder().build()
    configurations.configuration0 {
        subproject
    }
    configurations.configuration1 {
        allDependencies {
            subproject
        }
    }

解决方法

这应该做的伎俩:

configuration.getDependencies().add(dependenyMock);

猜你在找的设计模式相关文章