-
Notifications
You must be signed in to change notification settings - Fork 236
/
Copy pathbuild.gradle
27 lines (23 loc) · 1.15 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
apply plugin: 'com.google.protobuf'
apply plugin: 'java'
buildscript {
repositories {
mavenCentral()
maven { url = "$repoUrl" }
}
dependencies {
classpath "com.google.protobuf:protobuf-gradle-plugin:${protobufPluginVersion}"
}
}
dependencies {
implementation project(':grpc-common')
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-jersey', version: springBootVersion
implementation group: 'net.bytebuddy', name: 'byte-buddy', version: '1.16.1'
implementation group: 'com.google.protobuf', name: 'protobuf-java-util', version: protobufVersion
implementation ("io.grpc:grpc-all:$grpcVersion") {
exclude group: 'org.mockito'
}
testImplementation group: 'org.assertj', name: 'assertj-core', version: assertjVersion
testImplementation group: 'org.mockito', name: 'mockito-core', version: mockitoVersion
testImplementation group: 'org.mockito', name: 'mockito-inline', version: mockitoInlineVersion
}