Skip to content

Commit dbeb921

Browse files
authored
Merge pull request grpc#3 from songy23/update-opencensus
Resolve conflicts in core
2 parents 85cd037 + 3b5fb09 commit dbeb921

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

core/build.gradle

+7-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ dependencies {
44
compile project(':grpc-context'),
55
libraries.guava,
66
libraries.errorprone,
7-
libraries.jsr305,
8-
libraries.opencensus_contrib_grpc_metrics
7+
libraries.jsr305
98
compile (libraries.instrumentation_api) {
109
// prefer 2.0.19 from libraries instead of 2.0.11
1110
exclude group: 'com.google.errorprone', module: 'error_prone_annotations'
@@ -20,6 +19,12 @@ dependencies {
2019
// we'll always be more up-to-date
2120
exclude group: 'io.grpc', module: 'grpc-context'
2221
}
22+
compile (libraries.opencensus_contrib_grpc_metrics) {
23+
// prefer 3.0.0 from libraries instead of 3.0.1
24+
exclude group: 'com.google.code.findbugs', module: 'jsr305'
25+
// we'll always be more up-to-date
26+
exclude group: 'io.grpc', module: 'grpc-context'
27+
}
2328

2429
testCompile project(':grpc-testing')
2530

0 commit comments

Comments
 (0)