all: update modules to wait until other module's sourceSet is available (#6232)

This commit is contained in:
Jihun Cho 2019-10-02 15:05:44 -07:00 committed by GitHub
parent 5e814d49d1
commit e9ac1b4a76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 14 additions and 0 deletions

View File

@ -8,6 +8,8 @@ plugins {
description = 'gRPC: API'
evaluationDependsOn(project(':grpc-context').path)
dependencies {
compile project(':grpc-context'),
libraries.errorprone,

View File

@ -13,6 +13,8 @@ configurations {
alpnagent
}
evaluationDependsOn(project(':grpc-context').path)
dependencies {
compile project(':grpc-alts'),
project(':grpc-auth'),

View File

@ -13,6 +13,8 @@ configurations {
alpnagent
}
evaluationDependsOn(project(':grpc-core').path)
dependencies {
compile project(':grpc-core'),
libraries.netty,

View File

@ -8,6 +8,8 @@ plugins {
description = "gRPC: OkHttp"
evaluationDependsOn(project(':grpc-core').path)
dependencies {
compile project(':grpc-core'),
libraries.okio

View File

@ -16,6 +16,8 @@ description = "gRPC: Services"
]
}
evaluationDependsOn(project(':grpc-core').path)
dependencies {
compile project(':grpc-protobuf'),
project(':grpc-stub'),

View File

@ -7,6 +7,8 @@ plugins {
description = "gRPC: Testing"
evaluationDependsOn(project(':grpc-core').path)
dependencies {
compile project(':grpc-core'),
project(':grpc-stub'),

View File

@ -16,6 +16,8 @@ description = "gRPC: XDS plugin"
]
}
evaluationDependsOn(project(':grpc-core').path)
dependencies {
compile project(':grpc-protobuf'),
project(':grpc-stub'),