Skip to content

Commit

Permalink
Merge pull request #356 from vlsi/protobuf
Browse files Browse the repository at this point in the history
chore: use protobuf-bom to align com.google.protobuf dependencies
  • Loading branch information
loosebazooka authored Feb 24, 2023
2 parents 454912d + 65b494d commit 42f9f78
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions sigstore-java/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ dependencies {
implementation("dev.sigstore:protobuf-specs:0.1.0") {
because("It generates Sigstore Bundle file")
}
implementation("com.google.protobuf:protobuf-java-util:3.21.12") {
implementation(platform("com.google.protobuf:protobuf-bom:3.22.0"))
implementation("com.google.protobuf:protobuf-java-util") {
because("It converts protobuf to json")
}

Expand Down Expand Up @@ -60,7 +61,7 @@ dependencies {

protobuf {
protoc {
artifact = "com.google.protobuf:protoc:3.21.12"
artifact = "com.google.protobuf:protoc:3.22.0"
}
plugins {
id("grpc") {
Expand Down

0 comments on commit 42f9f78

Please sign in to comment.