Skip to content

Commit

Permalink
all: Bump perfmark to 0.19.0
Browse files Browse the repository at this point in the history
Resolves grpc#6217
  • Loading branch information
dapengzhang0 committed Oct 23, 2019
1 parent de131b9 commit 06bc91f
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 3 deletions.
3 changes: 2 additions & 1 deletion build.gradle
Expand Up @@ -185,7 +185,7 @@ subprojects {
libraries = [
android_annotations: "com.google.android:annotations:4.1.1.4",
animalsniffer_annotations: "org.codehaus.mojo:animal-sniffer-annotations:1.17",
errorprone: "com.google.errorprone:error_prone_annotations:2.3.2",
errorprone: "com.google.errorprone:error_prone_annotations:2.3.3",
gson: "com.google.code.gson:gson:2.7",
guava: "com.google.guava:guava:${guavaVersion}",
hpack: 'com.twitter:hpack:0.10.1',
Expand All @@ -202,6 +202,7 @@ subprojects {
opencensus_impl_lite: "io.opencensus:opencensus-impl-lite:${opencensusVersion}",
instrumentation_api: 'com.google.instrumentation:instrumentation-api:0.4.3',
perfmark: 'io.perfmark:perfmark-api:0.16.0',
perfmark: 'io.perfmark:perfmark-api:0.19.0',
protobuf: "com.google.protobuf:protobuf-java:${protobufVersion}",
protobuf_lite: "com.google.protobuf:protobuf-lite:3.0.1",
protoc_lite: "com.google.protobuf:protoc-gen-javalite:3.0.0",
Expand Down
5 changes: 5 additions & 0 deletions examples/pom.xml
Expand Up @@ -62,6 +62,11 @@
<artifactId>protobuf-java-util</artifactId>
<version>${protobuf.version}</version>
</dependency>
<dependency>
<groupId>com.google.errorprone</groupId>
<artifactId>error_prone_annotations</artifactId>
<version>2.3.3</version> <!-- prefer to use 2.3.3 or later -->
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand Down
2 changes: 2 additions & 0 deletions grpclb/build.gradle
Expand Up @@ -16,6 +16,8 @@ dependencies {
compile (libraries.protobuf_util) {
// prefer 26.0-android from libraries instead of 20.0
exclude group: 'com.google.guava', module: 'guava'
// prefer 2.3.3 from libraries instead of 2.3.2
exclude group: 'com.google.errorprone', module: 'error_prone_annotations'
}
compileOnly libraries.javax_annotation
testCompile libraries.truth,
Expand Down
4 changes: 2 additions & 2 deletions repositories.bzl
Expand Up @@ -408,9 +408,9 @@ def io_opencensus_grpc_metrics():
def io_perfmark():
jvm_maven_import_external(
name = "io_perfmark_perfmark_api",
artifact = "io.perfmark:perfmark-api:0.16.0",
artifact = "io.perfmark:perfmark-api:0.19.0",
server_urls = ["http://central.maven.org/maven2"],
artifact_sha256 = "a93667875ea9d10315177768739a18d6c667df041c982d2841645ae8558d0af0",
artifact_sha256 = "b734ba2149712409a44eabdb799f64768578fee0defe1418bb108fe32ea43e1a",
licenses = ["notice"], # Apache 2.0
)

Expand Down
2 changes: 2 additions & 0 deletions services/build.gradle
Expand Up @@ -24,6 +24,8 @@ dependencies {
compile (libraries.protobuf_util) {
// prefer 26.0-android from libraries instead of 20.0
exclude group: 'com.google.guava', module: 'guava'
// prefer 2.3.3 from libraries instead of 2.3.2
exclude group: 'com.google.errorprone', module: 'error_prone_annotations'
}

compileOnly libraries.javax_annotation
Expand Down
2 changes: 2 additions & 0 deletions xds/build.gradle
Expand Up @@ -29,6 +29,8 @@ dependencies {
compile (libraries.protobuf_util) {
// prefer 26.0-android from libraries instead of 20.0
exclude group: 'com.google.guava', module: 'guava'
// prefer 2.3.3 from libraries instead of 2.3.2
exclude group: 'com.google.errorprone', module: 'error_prone_annotations'
}

testCompile project(':grpc-core').sourceSets.test.output
Expand Down

0 comments on commit 06bc91f

Please sign in to comment.