@@ -30,8 +30,8 @@ For a guided tour, take a look at the [quick start
30
30
guide] ( https://grpc.io/docs/languages/java/quickstart ) or the more explanatory [ gRPC
31
31
basics] ( https://grpc.io/docs/languages/java/basics ) .
32
32
33
- The [ examples] ( https://github.com/grpc/grpc-java/tree/v1.34.1 /examples ) and the
34
- [ Android example] ( https://github.com/grpc/grpc-java/tree/v1.34.1 /examples/android )
33
+ The [ examples] ( https://github.com/grpc/grpc-java/tree/v1.35.0 /examples ) and the
34
+ [ Android example] ( https://github.com/grpc/grpc-java/tree/v1.35.0 /examples/android )
35
35
are standalone projects that showcase the usage of gRPC.
36
36
37
37
Download
@@ -42,17 +42,17 @@ Download [the JARs][]. Or for Maven with non-Android, add to your `pom.xml`:
42
42
<dependency >
43
43
<groupId >io.grpc</groupId >
44
44
<artifactId >grpc-netty-shaded</artifactId >
45
- <version >1.34.1 </version >
45
+ <version >1.35.0 </version >
46
46
</dependency >
47
47
<dependency >
48
48
<groupId >io.grpc</groupId >
49
49
<artifactId >grpc-protobuf</artifactId >
50
- <version >1.34.1 </version >
50
+ <version >1.35.0 </version >
51
51
</dependency >
52
52
<dependency >
53
53
<groupId >io.grpc</groupId >
54
54
<artifactId >grpc-stub</artifactId >
55
- <version >1.34.1 </version >
55
+ <version >1.35.0 </version >
56
56
</dependency >
57
57
<dependency > <!-- necessary for Java 9+ -->
58
58
<groupId >org.apache.tomcat</groupId >
@@ -64,23 +64,23 @@ Download [the JARs][]. Or for Maven with non-Android, add to your `pom.xml`:
64
64
65
65
Or for Gradle with non-Android, add to your dependencies:
66
66
``` gradle
67
- implementation 'io.grpc:grpc-netty-shaded:1.34.1 '
68
- implementation 'io.grpc:grpc-protobuf:1.34.1 '
69
- implementation 'io.grpc:grpc-stub:1.34.1 '
67
+ implementation 'io.grpc:grpc-netty-shaded:1.35.0 '
68
+ implementation 'io.grpc:grpc-protobuf:1.35.0 '
69
+ implementation 'io.grpc:grpc-stub:1.35.0 '
70
70
compileOnly 'org.apache.tomcat:annotations-api:6.0.53' // necessary for Java 9+
71
71
```
72
72
73
73
For Android client, use ` grpc-okhttp ` instead of ` grpc-netty-shaded ` and
74
74
` grpc-protobuf-lite ` instead of ` grpc-protobuf ` :
75
75
``` gradle
76
- implementation 'io.grpc:grpc-okhttp:1.34.1 '
77
- implementation 'io.grpc:grpc-protobuf-lite:1.34.1 '
78
- implementation 'io.grpc:grpc-stub:1.34.1 '
76
+ implementation 'io.grpc:grpc-okhttp:1.35.0 '
77
+ implementation 'io.grpc:grpc-protobuf-lite:1.35.0 '
78
+ implementation 'io.grpc:grpc-stub:1.35.0 '
79
79
compileOnly 'org.apache.tomcat:annotations-api:6.0.53' // necessary for Java 9+
80
80
```
81
81
82
82
[ the JARs] :
83
- https://search.maven.org/search?q=g:io.grpc%20AND%20v:1.34.1
83
+ https://search.maven.org/search?q=g:io.grpc%20AND%20v:1.35.0
84
84
85
85
Development snapshots are available in [ Sonatypes's snapshot
86
86
repository] ( https://oss.sonatype.org/content/repositories/snapshots/ ) .
@@ -112,7 +112,7 @@ For protobuf-based codegen integrated with the Maven build system, you can use
112
112
<configuration >
113
113
<protocArtifact >com.google.protobuf:protoc:3.12.0:exe:${os.detected.classifier}</protocArtifact >
114
114
<pluginId >grpc-java</pluginId >
115
- <pluginArtifact >io.grpc:protoc-gen-grpc-java:1.34.1 :exe:${os.detected.classifier}</pluginArtifact >
115
+ <pluginArtifact >io.grpc:protoc-gen-grpc-java:1.35.0 :exe:${os.detected.classifier}</pluginArtifact >
116
116
</configuration >
117
117
<executions >
118
118
<execution >
@@ -142,7 +142,7 @@ protobuf {
142
142
}
143
143
plugins {
144
144
grpc {
145
- artifact = 'io.grpc:protoc-gen-grpc-java:1.34.1 '
145
+ artifact = 'io.grpc:protoc-gen-grpc-java:1.35.0 '
146
146
}
147
147
}
148
148
generateProtoTasks {
0 commit comments