Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update managed.protobuf to v4 (major) #867

Closed
wants to merge 3 commits into from
Closed
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
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[versions]
managed-grpc = '1.62.2'
managed-protobuf = '3.25.3'
managed-protobuf = '4.26.0'
managed-protobuf-gradle = '0.9.4'
managed-grpc-kotlin = '1.4.1'

Expand Down
1 change: 1 addition & 0 deletions grpc-client-runtime/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ dependencies {
implementation mn.micronaut.buffer.netty

testCompileOnly libs.javax.annotation.api
testCompileOnly libs.managed.protobuf.java

testImplementation projects.micronautGrpcServerRuntime
testImplementation mn.micronaut.discovery.core
Expand Down
1 change: 1 addition & 0 deletions grpc-opentracing/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ dependencies {
compileOnly libs.javax.annotation.api

testCompileOnly libs.javax.annotation.api
testCompileOnly libs.managed.protobuf.java

testImplementation projects.micronautGrpcServerRuntime
testImplementation libs.managed.grpc.services
Expand Down
1 change: 1 addition & 0 deletions grpc-server-runtime/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ dependencies {
implementation mn.micronaut.discovery.core

testCompileOnly libs.javax.annotation.api
testCompileOnly libs.managed.protobuf.java

testImplementation libs.managed.grpc.services
testImplementation mn.micronaut.discovery.core
Expand Down
1 change: 1 addition & 0 deletions test-suite-groovy/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ dependencies {

testImplementation libs.groovy

testCompileOnly libs.managed.protobuf.java
testRuntimeOnly mnLogging.logback.classic
}

Expand Down
1 change: 1 addition & 0 deletions test-suite-java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ dependencies {
testAnnotationProcessor mnValidation.micronaut.validation.processor

testCompileOnly libs.javax.annotation.api
testCompileOnly libs.managed.protobuf.java
}

// tag::config[]
Expand Down
1 change: 1 addition & 0 deletions test-suite-kotlin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ dependencies {
implementation libs.managed.grpc.kotlin.stub
implementation libs.managed.grpc.services
compileOnly libs.managed.grpc.stub
compileOnly libs.managed.protobuf.java
compileOnly libs.javax.annotation.api
// end::dependencies[]

Expand Down
Loading