plugins { | |
id "java-library" | |
id "maven-publish" | |
id "com.google.protobuf" | |
id "ru.vyarus.animalsniffer" | |
} | |
description = "gRPC: Testing Protos" | |
tasks.named("jar").configure { | |
manifest { | |
attributes('Automatic-Module-Name': 'io.grpc.testing.protobuf') | |
} | |
} | |
dependencies { | |
api project(':grpc-protobuf'), | |
project(':grpc-stub') | |
testImplementation libraries.truth | |
signature (libraries.signature.java) { | |
artifact { | |
extension = "signature" | |
} | |
} | |
} | |
configureProtoCompilation() |