5
Tôi có mã sau:Làm cách nào để thêm phụ thuộc theo chương trình vào cấu hình 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
}
và tôi muốn kiểm tra. Cho đến nay, tôi có:
@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}"
}
}
}
Làm cách nào để thêm phụ thuộc vào cấu hình? Sau đây không hoạt động:
final Project subproject = ProjectBuilder.builder().build()
configurations.configuration0 {
subproject
}
configurations.configuration1 {
allDependencies {
subproject
}
}
Làm thế nào để biến subproject0 thành một sự phụ thuộc có thể được thông qua vào 'thêm() '? –