mirror of https://github.com/grpc/grpc-java.git
21 lines
469 B
Groovy
21 lines
469 B
Groovy
plugins {
|
|
id "be.insaneprogramming.gradle.animalsniffer" version "1.4.0"
|
|
}
|
|
|
|
description = 'gRPC: Protobuf'
|
|
|
|
dependencies {
|
|
compile project(':grpc-core'),
|
|
libraries.protobuf,
|
|
libraries.guava,
|
|
libraries.protobuf_util
|
|
|
|
compile (project(':grpc-protobuf-lite')) {
|
|
exclude group: 'com.google.protobuf', module: 'protobuf-lite'
|
|
}
|
|
}
|
|
|
|
animalsniffer {
|
|
signature = "org.codehaus.mojo.signature:java16:+@signature"
|
|
}
|