diff --git a/build.gradle b/build.gradle
index 63aa7887c61..ab080e6bf2a 100644
--- a/build.gradle
+++ b/build.gradle
@@ -187,7 +187,7 @@ subprojects {
hpack: 'com.twitter:hpack:0.10.1',
jsr305: 'com.google.code.findbugs:jsr305:3.0.0',
oauth_client: 'com.google.auth:google-auth-library-oauth2-http:0.9.0',
- google_api_protos: 'com.google.api.grpc:proto-google-common-protos:0.1.9',
+ google_api_protos: 'com.google.api.grpc:proto-google-common-protos:1.0.0',
google_auth_credentials: 'com.google.auth:google-auth-library-credentials:0.9.0',
okhttp: 'com.squareup.okhttp:okhttp:2.5.0',
okio: 'com.squareup.okio:okio:1.6.0',
diff --git a/examples/build.gradle b/examples/build.gradle
index 2e1d4809686..edab878b484 100644
--- a/examples/build.gradle
+++ b/examples/build.gradle
@@ -25,7 +25,7 @@ repositories {
def grpcVersion = '1.9.0-SNAPSHOT' // CURRENT_GRPC_VERSION
dependencies {
- compile "com.google.api.grpc:proto-google-common-protos:0.1.9"
+ compile "com.google.api.grpc:proto-google-common-protos:1.0.0"
compile "io.grpc:grpc-netty:${grpcVersion}"
compile "io.grpc:grpc-protobuf:${grpcVersion}"
compile "io.grpc:grpc-stub:${grpcVersion}"
diff --git a/examples/pom.xml b/examples/pom.xml
index 2b4c24bfdaf..e63764aa803 100644
--- a/examples/pom.xml
+++ b/examples/pom.xml
@@ -38,7 +38,7 @@
com.google.api.grpc
proto-google-common-protos
- 0.1.9
+ 1.0.0
junit
diff --git a/repositories.bzl b/repositories.bzl
index fd42954487f..7c52dac8fad 100644
--- a/repositories.bzl
+++ b/repositories.bzl
@@ -86,8 +86,8 @@ def grpc_java_repositories(
def com_google_api_grpc_google_common_protos():
native.maven_jar(
name = "com_google_api_grpc_proto_google_common_protos",
- artifact = "com.google.api.grpc:proto-google-common-protos:0.1.9",
- sha1 = "3760f6a6e13c8ab070aa629876cdd183614ee877",
+ artifact = "com.google.api.grpc:proto-google-common-protos:1.0.0",
+ sha1 = "de4e859c3530f7e9f854e40b0a8b7074d95e3aff",
)
def com_google_code_findbugs_jsr305():