|
1 | 1 | gRPC-Java - An RPC library and framework |
2 | 2 | ======================================== |
3 | 3 |
|
4 | | -<table> |
5 | | - <tr> |
6 | | - <td><b>Homepage:</b></td> |
7 | | - <td><a href="https://grpc.io/">grpc.io</a></td> |
8 | | - </tr> |
9 | | - <tr> |
10 | | - <td><b>Mailing List:</b></td> |
11 | | - <td><a href="https://groups.google.com/forum/#!forum/grpc-io">grpc-io@googlegroups.com</a></td> |
12 | | - </tr> |
13 | | -</table> |
| 4 | +| Resource | Link | |
| 5 | +|--------|------| |
| 6 | +| Homepage | https://grpc.io | |
| 7 | +| Mailing List | grpc-io@googlegroups.com | |
14 | 8 |
|
15 | 9 | [](https://gitter.im/grpc/grpc?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) |
16 | 10 | [](https://github.com/grpc/grpc-java/actions/workflows/testing.yml?branch=master) |
17 | 11 | [](https://coveralls.io/github/grpc/grpc-java?branch=master) |
18 | 12 | [](https://codecov.io/gh/grpc/grpc-java) |
19 | 13 |
|
20 | | -Supported Platforms |
21 | | -------------------- |
| 14 | +## Supported Platforms |
22 | 15 |
|
23 | 16 | gRPC-Java supports Java 8 and later. Android minSdkVersion 23 (Marshmallow) and |
24 | 17 | later are supported with [Java 8 language desugaring][android-java-8]. |
@@ -51,7 +44,7 @@ are standalone projects that showcase the usage of gRPC. |
51 | 44 | Download |
52 | 45 | -------- |
53 | 46 |
|
54 | | -Download [the JARs][]. Or for Maven with non-Android, add to your `pom.xml`: |
| 47 | +Download [the JARs]: https://search.maven.org/search?q=g:io.grpc%20AND%20v:1.79.0. Or for Maven with non-Android, add to your `pom.xml`: |
55 | 48 | ```xml |
56 | 49 | <dependency> |
57 | 50 | <groupId>io.grpc</groupId> |
@@ -241,7 +234,7 @@ The Stub layer is what is exposed to most developers and provides type-safe |
241 | 234 | bindings to whatever datamodel/IDL/interface you are adapting. gRPC comes with |
242 | 235 | a [plugin](https://github.com/google/grpc-java/blob/master/compiler) to the |
243 | 236 | protocol-buffers compiler that generates Stub interfaces out of `.proto` files, |
244 | | -but bindings to other datamodel/IDL are easy and encouraged. |
| 237 | +but bindings to other data models or IDLs are supported and encouraged. |
245 | 238 |
|
246 | 239 | ### Channel |
247 | 240 |
|
|
0 commit comments