Skip to content
Merged
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
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ plugins {
id 'com.github.sherter.google-java-format' version '0.9'
id 'base'
id 'maven-publish'
id 'com.gradleup.shadow' version '8.3.2'
id 'com.gradleup.shadow' version '8.3.5'
}
// Apply the java plugin to add support for Java
apply plugin: 'java'
Expand All @@ -57,7 +57,7 @@ java {
targetCompatibility = JavaVersion.VERSION_11
}

def grpcVersion = '1.68.1'
def grpcVersion = '1.68.2'
def dgraph4jVersion = "$version"
def openCensusVersion = '0.31.1'

Expand All @@ -66,7 +66,7 @@ protobuf {
// The version of protoc must match protobuf-java. If you don't depend on
// protobuf-java directly, you will be transitively depending on the
// protobuf-java version that grpc depends on.
artifact = "com.google.protobuf:protoc:4.28.3"
artifact = "com.google.protobuf:protoc:4.29.0"
}
plugins {
grpc {
Expand Down Expand Up @@ -128,7 +128,7 @@ dependencies {
// Explicit matching of protobuf-java and protoc versions to address
// compilation errors arising due to transitive dependency on the version of
// protobuf-java that grpc depends on.
implementation "com.google.protobuf:protobuf-java:4.28.3"
implementation "com.google.protobuf:protobuf-java:4.29.0"

testImplementation "io.opencensus:opencensus-api:${openCensusVersion}"
testImplementation "io.opencensus:opencensus-exporter-trace-jaeger:${openCensusVersion}"
Expand Down
Loading