Skip to content

Commit

Permalink
upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
namtzigla committed Nov 25, 2024
1 parent e8de320 commit ebe23fe
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 13 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
plugins {
id("com.github.johnrengelman.shadow") version "8.1.1" apply(false)
id("io.micronaut.application") version "4.4.2" apply(false)
id("io.micronaut.aot") version "4.4.2" apply(false)
id("io.micronaut.docker") version "4.4.2" apply(false)
id("com.google.protobuf") version "0.9.2" apply(false)
id("io.micronaut.application") version "${micronautGradlePluginVersion}" apply(false)
id("io.micronaut.aot") version "${micronautGradlePluginVersion}" apply(false)
id("io.micronaut.docker") version "${micronautGradlePluginVersion}" apply(false)
id("com.google.protobuf") version "0.9.4" apply(false)
id("maven-publish")
}

Expand Down
10 changes: 5 additions & 5 deletions core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ dependencies {

implementation("com.zaxxer:HikariCP:5.1.0")

implementation("io.grpc:grpc-protobuf:1.68.0")
implementation("io.grpc:grpc-services:1.68.0")
implementation("io.grpc:grpc-stub:1.68.0")
implementation("io.grpc:grpc-protobuf:${grpcVersion}")
implementation("io.grpc:grpc-services:${grpcVersion}")
implementation("io.grpc:grpc-stub:${grpcVersion}")
compileOnly("org.apache.tomcat:annotations-api:6.0.53")
runtimeOnly("io.grpc:grpc-netty-shaded:1.68.0")
implementation("com.google.protobuf:protobuf-java-util:4.28.3")
runtimeOnly("io.grpc:grpc-netty-shaded:${grpcVersion}")
implementation("com.google.protobuf:protobuf-java-util:${protobufVersion}")
implementation("org.bouncycastle:bcpkix-jdk18on:1.78.1")


Expand Down
9 changes: 7 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
micronautVersion=4.4.2
micronautVersion=4.7.1
micronautGradlePluginVersion=4.4.4

grpcVersion=1.68.1
protobufVersion=3.25.5

org.gradle.jvmargs=-Xmx4G

version=0.0.0-dev
version=0.6.0-SNAPSHOT
4 changes: 2 additions & 2 deletions protos/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ sourceSets {


protobuf {
protoc { artifact = "com.google.protobuf:protoc:3.25.4" }
protoc { artifact = "com.google.protobuf:protoc:${protobufVersion}" }
plugins {
grpc { artifact = "io.grpc:protoc-gen-grpc-java:1.66.0" }
grpc { artifact = "io.grpc:protoc-gen-grpc-java:${grpcVersion}" }
}

generateProtoTasks {
Expand Down
4 changes: 4 additions & 0 deletions protos/src/main/proto/tcnapi/exile/gate/v1/entities.proto
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@ message ExileAgentCall {
string org_id = 17;
string user_id = 18;
string internal_key = 19;
repeated string task_data_keys = 20;
repeated string task_data_values = 21;

string partner_agent_id = 100;

}

message ExileTelephonyResult {
Expand Down

0 comments on commit ebe23fe

Please sign in to comment.