• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1description = "gRPC: Testing Protos"
2
3// Add dependency on the protobuf plugin
4buildscript {
5    repositories {
6        maven { // The google mirror is less flaky than mavenCentral()
7            url "https://maven-central.storage-download.googleapis.com/repos/central/data/" }
8    }
9    dependencies { classpath libraries.protobuf_plugin }
10}
11
12dependencies {
13    compile project(':grpc-protobuf'),
14            project(':grpc-stub')
15    compileOnly libraries.javax_annotation
16    testCompile libraries.truth
17    testRuntime libraries.javax_annotation
18}
19
20configureProtoCompilation()
21