Skip to content

Commit

Permalink
Merge pull request #43 from tronprotocol/feature/update_grpc_v1
Browse files Browse the repository at this point in the history
feat(net): update io.grpc from 1.14.0 to 1.52.1
  • Loading branch information
317787106 committed Apr 6, 2023
2 parents a2e790d + d63d973 commit defdd4c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'io.github.tronprotocol'
version '0.1.4'
version '0.1.5'

buildscript {
repositories {
Expand All @@ -20,9 +20,9 @@ apply plugin: 'maven-publish'
apply plugin: 'signing'
apply plugin: "io.github.gradle-nexus.publish-plugin"

def protobufVersion = "3.19.2"
def protobufVersion = "3.21.12"

def grpcVersion = "1.14.0"
def grpcVersion = "1.52.1"

mainClassName = 'org.tron.p2p.example.StartApp'

Expand Down Expand Up @@ -83,12 +83,12 @@ tasks.matching { it instanceof Test }.all {
protobuf {
generatedFilesBaseDir = "$projectDir/src"
protoc {
artifact = "com.google.protobuf:protoc:3.5.1-1"
artifact = "com.google.protobuf:protoc:$protobufVersion"
}

plugins {
grpc {
artifact = 'io.grpc:protoc-gen-grpc-java:1.9.0'
artifact = "io.grpc:protoc-gen-grpc-java:$grpcVersion"
}
}
generateProtoTasks {
Expand Down

0 comments on commit defdd4c

Please sign in to comment.