mirror of https://github.com/grpc/grpc-java.git
29 lines
631 B
Groovy
29 lines
631 B
Groovy
description = "gRPC: GRPCLB LoadBalancer plugin"
|
|
|
|
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath libraries.protobuf_plugin
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':grpc-core'),
|
|
project(':grpc-protobuf'),
|
|
project(':grpc-stub'),
|
|
libraries.protobuf
|
|
testCompile libraries.truth,
|
|
project(':grpc-core').sourceSets.test.output
|
|
}
|
|
|
|
configureProtoCompilation()
|
|
|
|
idea {
|
|
module {
|
|
sourceDirs += file("${projectDir}/src/generated/main/grpc");
|
|
sourceDirs += file("${projectDir}/src/generated/main/java");
|
|
}
|
|
}
|