Skip to content
Open
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
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ plugins {
id 'jacoco'
id 'base'
id 'maven-publish'
id 'com.gradleup.shadow' version '8.3.6'
id 'com.gradleup.shadow' version '8.3.9'
}

apply plugin: 'java'
Expand All @@ -43,7 +43,7 @@ java {
targetCompatibility = JavaVersion.VERSION_11
}

def grpcVersion = '1.73.0'
def grpcVersion = '1.76.0'
def dgraph4jVersion = "$version"
def openCensusVersion = '0.31.1'

Expand All @@ -52,7 +52,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.31.1'
artifact = 'com.google.protobuf:protoc:4.33.0'
}
plugins {
grpc {
Expand Down Expand Up @@ -109,19 +109,19 @@ dependencies {
implementation "io.grpc:grpc-netty:${grpcVersion}"
implementation "io.grpc:grpc-stub:${grpcVersion}"

implementation 'com.google.guava:guava:33.4.8-jre'
implementation 'com.google.guava:guava:33.5.0-jre'

// 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.31.1'
implementation 'com.google.protobuf:protobuf-java:4.33.0'

testImplementation "io.opencensus:opencensus-api:${openCensusVersion}"
testImplementation "io.opencensus:opencensus-exporter-trace-jaeger:${openCensusVersion}"
testRuntimeOnly "io.opencensus:opencensus-impl:${openCensusVersion}"

// Used for unmarshalling a JSON GraphQL response
testImplementation 'com.google.code.gson:gson:2.13.1'
testImplementation 'com.google.code.gson:gson:2.13.2'

// Declare the dependency for your favourite test framework you want to use in your tests.
testImplementation 'org.testng:testng:7.11.0'
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
2 changes: 1 addition & 1 deletion samples/DgraphJavaSample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dependencies {
testImplementation 'junit:junit:4.13.2'

// https://mvnrepository.com/artifact/com.google.code.gson/gson
implementation 'com.google.code.gson:gson:2.13.1'
implementation 'com.google.code.gson:gson:2.13.2'
}

// Define the main class for the application
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
2 changes: 1 addition & 1 deletion samples/DgraphJavaSampleDeadlineInterceptors/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dependencies {
testImplementation 'junit:junit:4.13.2'

// https://mvnrepository.com/artifact/com.google.code.gson/gson
implementation 'com.google.code.gson:gson:2.13.1'
implementation 'com.google.code.gson:gson:2.13.2'
}

// Define the main class for the application
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
2 changes: 1 addition & 1 deletion samples/DgraphJavaSampleWithDeadlineAfter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dependencies {
testImplementation 'junit:junit:4.13.2'

// https://mvnrepository.com/artifact/com.google.code.gson/gson
implementation 'com.google.code.gson:gson:2.13.1'
implementation 'com.google.code.gson:gson:2.13.2'

}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
6 changes: 3 additions & 3 deletions samples/concurrent-modification/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.14.0</version>
<version>3.14.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
Expand All @@ -20,7 +20,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.5.1</version>
<version>3.6.2</version>
<configuration>
<mainClass>io.dgraph.example.MultiThreadedMutationLauncher</mainClass>
</configuration>
Expand All @@ -38,7 +38,7 @@
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.13.1</version>
<version>2.13.2</version>
</dependency>
</dependencies>
</project>
Loading