Skip to content
This repository was archived by the owner on Sep 26, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ apply plugin: 'io.codearte.nexus-staging'
project.version = "1.37.1-SNAPSHOT" // {x-version-update:gax:current}

ext {
// When upgrading grpc, make sure to upgrade opencensusVersion to be consistent with grpc.
grpcVersion = '1.17.1'
opencensusVersion = '0.17.0'
commonProtosVersion = '1.12.0'
authVersion = '0.12.0'
// Project names not used for release
Expand Down Expand Up @@ -108,6 +110,7 @@ subprojects {

ext {
grpcVersion = grpcVersion
opencensusVersion = opencensusVersion
commonProtosVersion = commonProtosVersion

// Shortcuts for libraries we are using
Expand All @@ -127,6 +130,7 @@ subprojects {
authCredentials: "com.google.auth:google-auth-library-credentials:${authVersion}",
commonProtos: "com.google.api.grpc:proto-google-common-protos:${commonProtosVersion}",
apiCommon: "com.google.api:api-common:1.7.0",
opencensusApi: "io.opencensus:opencensus-api:${opencensusVersion}",

This comment was marked as spam.

This comment was marked as spam.


// Testing
junit: 'junit:junit:4.12',
Expand Down
3 changes: 2 additions & 1 deletion gax/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ dependencies {
libraries.jsr305,
libraries.threetenbp,
libraries.auth,
libraries.apiCommon
libraries.apiCommon,
libraries.opencensusApi

compileOnly libraries.autovalue

Expand Down
Loading