Skip to content

Commit 1ffb3b4

Browse files
committed
Update protobuf version in examples
1 parent 1bbb53e commit 1ffb3b4

File tree

23 files changed

+27
-27
lines changed

23 files changed

+27
-27
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ For protobuf-based codegen integrated with the Maven build system, you can use
129129
<artifactId>protobuf-maven-plugin</artifactId>
130130
<version>0.6.1</version>
131131
<configuration>
132-
<protocArtifact>com.google.protobuf:protoc:3.22.3:exe:${os.detected.classifier}</protocArtifact>
132+
<protocArtifact>com.google.protobuf:protoc:3.23.4:exe:${os.detected.classifier}</protocArtifact>
133133
<pluginId>grpc-java</pluginId>
134134
<pluginArtifact>io.grpc:protoc-gen-grpc-java:1.56.0:exe:${os.detected.classifier}</pluginArtifact>
135135
</configuration>
@@ -157,7 +157,7 @@ plugins {
157157
158158
protobuf {
159159
protoc {
160-
artifact = "com.google.protobuf:protoc:3.22.3"
160+
artifact = "com.google.protobuf:protoc:3.23.4"
161161
}
162162
plugins {
163163
grpc {
@@ -190,7 +190,7 @@ plugins {
190190
191191
protobuf {
192192
protoc {
193-
artifact = "com.google.protobuf:protoc:3.22.3"
193+
artifact = "com.google.protobuf:protoc:3.23.4"
194194
}
195195
plugins {
196196
grpc {

examples/android/clientcache/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ android {
3232
}
3333

3434
protobuf {
35-
protoc { artifact = 'com.google.protobuf:protoc:3.22.3' }
35+
protoc { artifact = 'com.google.protobuf:protoc:3.23.4' }
3636
plugins {
3737
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.57.0-SNAPSHOT' // CURRENT_GRPC_VERSION
3838
}

examples/android/helloworld/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ android {
3030
}
3131

3232
protobuf {
33-
protoc { artifact = 'com.google.protobuf:protoc:3.22.3' }
33+
protoc { artifact = 'com.google.protobuf:protoc:3.23.4' }
3434
plugins {
3535
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.57.0-SNAPSHOT' // CURRENT_GRPC_VERSION
3636
}

examples/android/routeguide/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ android {
3030
}
3131

3232
protobuf {
33-
protoc { artifact = 'com.google.protobuf:protoc:3.22.3' }
33+
protoc { artifact = 'com.google.protobuf:protoc:3.23.4' }
3434
plugins {
3535
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.57.0-SNAPSHOT' // CURRENT_GRPC_VERSION
3636
}

examples/android/strictmode/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ android {
3131
}
3232

3333
protobuf {
34-
protoc { artifact = 'com.google.protobuf:protoc:3.22.3' }
34+
protoc { artifact = 'com.google.protobuf:protoc:3.23.4' }
3535
plugins {
3636
grpc { artifact = 'io.grpc:protoc-gen-grpc-java:1.57.0-SNAPSHOT' // CURRENT_GRPC_VERSION
3737
}

examples/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ targetCompatibility = 1.8
2222
// Feel free to delete the comment at the next line. It is just for safely
2323
// updating the version in our release process.
2424
def grpcVersion = '1.57.0-SNAPSHOT' // CURRENT_GRPC_VERSION
25-
def protobufVersion = '3.22.3'
25+
def protobufVersion = '3.23.4'
2626
def protocVersion = protobufVersion
2727

2828
dependencies {

examples/example-alts/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ targetCompatibility = 1.8
2424
// Feel free to delete the comment at the next line. It is just for safely
2525
// updating the version in our release process.
2626
def grpcVersion = '1.57.0-SNAPSHOT' // CURRENT_GRPC_VERSION
27-
def protocVersion = '3.22.3'
27+
def protocVersion = '3.23.4'
2828

2929
dependencies {
3030
// grpc-alts transitively depends on grpc-netty-shaded, grpc-protobuf, and grpc-stub

examples/example-debug/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ targetCompatibility = 1.8
2424
// Feel free to delete the comment at the next line. It is just for safely
2525
// updating the version in our release process.
2626
def grpcVersion = '1.57.0-SNAPSHOT' // CURRENT_GRPC_VERSION
27-
def protobufVersion = '3.22.3'
27+
def protobufVersion = '3.23.4'
2828

2929
dependencies {
3030
implementation "io.grpc:grpc-protobuf:${grpcVersion}"

examples/example-debug/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<properties>
1414
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1515
<grpc.version>1.57.0-SNAPSHOT</grpc.version><!-- CURRENT_GRPC_VERSION -->
16-
<protoc.version>3.22.3</protoc.version>
16+
<protoc.version>3.23.4</protoc.version>
1717
<!-- required for jdk9 -->
1818
<maven.compiler.source>1.8</maven.compiler.source>
1919
<maven.compiler.target>1.8</maven.compiler.target>

examples/example-gauth/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ targetCompatibility = 1.8
2424
// Feel free to delete the comment at the next line. It is just for safely
2525
// updating the version in our release process.
2626
def grpcVersion = '1.57.0-SNAPSHOT' // CURRENT_GRPC_VERSION
27-
def protobufVersion = '3.22.3'
27+
def protobufVersion = '3.23.4'
2828
def protocVersion = protobufVersion
2929

3030

0 commit comments

Comments
 (0)