Skip to content

Commit cb3de63

Browse files
committed
Fix the github links in the documentation impacted by the repo transfer from yidongnan/grpc-spring-boot-starter to grpc-ecosystem/grpc-spring.
1 parent 8fd9c98 commit cb3de63

16 files changed

+46
-46
lines changed

docs/assets/images/client-project-setup.dot

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ digraph serversetup {
3939
fillColor="white";
4040
fontcolor="gray50";
4141

42-
serviceimpl [label="Service implementations", color="gray50", fontcolor="gray50",fillcolor="white",width="3", URL="https://github.com/yidongnan/grpc-spring-boot-starter/blob/master/grpc-server-spring-boot-autoconfigure/src/main/java/net/devh/boot/grpc/server/service/GrpcService.java#L49", target="_blank"];
42+
serviceimpl [label="Service implementations", color="gray50", fontcolor="gray50",fillcolor="white",width="3", URL="https://github.com/grpc-ecosystem/grpc-spring/blob/master/grpc-server-spring-boot-autoconfigure/src/main/java/net/devh/boot/grpc/server/service/GrpcService.java#L49", target="_blank"];
4343

4444
servicemodel -> serviceimpl [style=dashed, color="gray50", dir=back];
4545

@@ -49,7 +49,7 @@ digraph serversetup {
4949

5050
label="Client-Projects";
5151

52-
clientfield [label="Client/Stub usage", width="3", URL="https://github.com/yidongnan/grpc-spring-boot-starter/blob/master/grpc-client-spring-boot-autoconfigure/src/main/java/net/devh/boot/grpc/client/inject/GrpcClient.java#L69", target="_blank"];
52+
clientfield [label="Client/Stub usage", width="3", URL="https://github.com/grpc-ecosystem/grpc-spring/blob/master/grpc-client-spring-boot-autoconfigure/src/main/java/net/devh/boot/grpc/client/inject/GrpcClient.java#L69", target="_blank"];
5353

5454
servicemodel:se -> clientfield[style=dashed, dir=back];
5555
servicemodel:se -> clientfield[style=dashed, dir=back, weight=0];

docs/assets/images/client-project-setup.svg

Lines changed: 2 additions & 2 deletions
Loading

docs/assets/images/server-project-setup.dot

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ digraph serversetup {
3636

3737
label="Server-Project"
3838

39-
serviceimpl [label="Service implementations", width="3", URL="https://github.com/yidongnan/grpc-spring-boot-starter/blob/master/grpc-server-spring-boot-autoconfigure/src/main/java/net/devh/boot/grpc/server/service/GrpcService.java#L49", target="_blank"];
39+
serviceimpl [label="Service implementations", width="3", URL="https://github.com/grpc-ecosystem/grpc-spring/blob/master/grpc-server-spring-boot-autoconfigure/src/main/java/net/devh/boot/grpc/server/service/GrpcService.java#L49", target="_blank"];
4040

4141
servicemodel -> serviceimpl [style=dashed, dir=back];
4242

@@ -49,7 +49,7 @@ digraph serversetup {
4949
fillColor="white";
5050
fontcolor="gray50";
5151

52-
clientfield [label="Client/Stub usage", width="3", color="gray50", fontcolor="gray50",fillcolor="white", URL="https://github.com/yidongnan/grpc-spring-boot-starter/blob/master/grpc-client-spring-boot-autoconfigure/src/main/java/net/devh/boot/grpc/client/inject/GrpcClient.java#L69", target="_blank"];
52+
clientfield [label="Client/Stub usage", width="3", color="gray50", fontcolor="gray50",fillcolor="white", URL="https://github.com/grpc-ecosystem/grpc-spring/blob/master/grpc-client-spring-boot-autoconfigure/src/main/java/net/devh/boot/grpc/client/inject/GrpcClient.java#L69", target="_blank"];
5353

5454
servicemodel:se -> clientfield[style=dashed, dir=back, color="gray50"];
5555
servicemodel:se -> clientfield[style=dashed, dir=back, color="gray50", weight=0];

docs/assets/images/server-project-setup.svg

Lines changed: 2 additions & 2 deletions
Loading

docs/en/client/configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ You can find all build-in configuration properties here:
3636
- [`GrpcServerProperties.Security`](https://static.javadoc.io/net.devh/grpc-client-spring-boot-autoconfigure/latest/net/devh/boot/grpc/client/config/GrpcChannelProperties.Security.html)
3737

3838
If you prefer to read the sources instead, you can do so
39-
[here](https://github.com/yidongnan/grpc-spring-boot-starter/blob/master/grpc-client-spring-boot-autoconfigure/src/main/java/net/devh/boot/grpc/client/config/GrpcChannelProperties.java#L58).
39+
[here](https://github.com/grpc-ecosystem/grpc-spring/blob/master/grpc-client-spring-boot-autoconfigure/src/main/java/net/devh/boot/grpc/client/config/GrpcChannelProperties.java#L58).
4040

4141
The properties for the channels are all prefixed with `grpc.client.__name__.` and `grpc.client.__name__.security.`
4242
respectively. The channel name is taken from the `@GrpcClient("__name__")` annotation.
@@ -322,7 +322,7 @@ using a custom `NameResolverProvider`.
322322
> **Note:** This can only be used to decide this on an application level and not on a per request level.
323323
324324
This library provides some `NameResolverProvider`s itself so you can use them as a
325-
[reference](https://github.com/yidongnan/grpc-spring-boot-starter/tree/master/grpc-client-spring-boot-autoconfigure/src/main/java/net/devh/boot/grpc/client/nameresolver).
325+
[reference](https://github.com/grpc-ecosystem/grpc-spring/tree/master/grpc-client-spring-boot-autoconfigure/src/main/java/net/devh/boot/grpc/client/nameresolver).
326326

327327
You can register your `NameResolverProvider` by adding it to `META-INF/services/io.grpc.NameResolverProvider` for Java's
328328
`ServiceLoader` or adding it your spring context. If you wish to use some spring beans inside your `NameResolver`, then

docs/en/contributions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
Contributions are always welcome.
66

7-
For more information refer to our [contribution guidelines](https://github.com/yidongnan/grpc-spring-boot-starter/blob/master/CONTRIBUTING.md).
7+
For more information refer to our [contribution guidelines](https://github.com/grpc-ecosystem/grpc-spring/blob/master/CONTRIBUTING.md).
88

9-
**Thanks to all our [contributors](https://github.com/yidongnan/grpc-spring-boot-starter/graphs/contributors)!**
9+
**Thanks to all our [contributors](https://github.com/grpc-ecosystem/grpc-spring/graphs/contributors)!**
1010

1111
----------
1212

docs/en/examples.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,30 +6,30 @@ These projects work as is and could be used as templates for your own projects.
66
We use them to verify that this library works in different environments, and we don't break anything unnoticed.
77

88
> **Note:** If you have questions regarding these sample projects or would like an example for another use case,
9-
> feel free to open an [issue](https://github.com/yidongnan/grpc-spring-boot-starter/issues).
9+
> feel free to open an [issue](https://github.com/grpc-ecosystem/grpc-spring/issues).
1010
1111
## Local example
1212

1313
The simplest setup of all, using a local server and one or more clients.
1414

15-
- [Server](https://github.com/yidongnan/grpc-spring-boot-starter/tree/master/examples/local-grpc-server)
16-
- [Client](https://github.com/yidongnan/grpc-spring-boot-starter/tree/master/examples/local-grpc-client)
17-
- [Instructions](https://github.com/yidongnan/grpc-spring-boot-starter/tree/master/examples#local-mode)
15+
- [Server](https://github.com/grpc-ecosystem/grpc-spring/tree/master/examples/local-grpc-server)
16+
- [Client](https://github.com/grpc-ecosystem/grpc-spring/tree/master/examples/local-grpc-client)
17+
- [Instructions](https://github.com/grpc-ecosystem/grpc-spring/tree/master/examples#local-mode)
1818

1919
## Cloud example
2020

2121
A setup for cloud environments using a eureka service discovery service.
2222

23-
- [Eureka-Server](https://github.com/yidongnan/grpc-spring-boot-starter/tree/master/examples/cloud-eureka-server)
24-
- [Server](https://github.com/yidongnan/grpc-spring-boot-starter/tree/master/examples/cloud-grpc-server)
25-
- [Client](https://github.com/yidongnan/grpc-spring-boot-starter/tree/master/examples/cloud-grpc-client)
26-
- [Instructions](https://github.com/yidongnan/grpc-spring-boot-starter/tree/master/examples#cloud-mode)
23+
- [Eureka-Server](https://github.com/grpc-ecosystem/grpc-spring/tree/master/examples/cloud-eureka-server)
24+
- [Server](https://github.com/grpc-ecosystem/grpc-spring/tree/master/examples/cloud-grpc-server)
25+
- [Client](https://github.com/grpc-ecosystem/grpc-spring/tree/master/examples/cloud-grpc-client)
26+
- [Instructions](https://github.com/grpc-ecosystem/grpc-spring/tree/master/examples#cloud-mode)
2727

2828
## Basic Auth Example
2929

3030
A setup that demonstrates the usage of spring-security with grpc.
3131
This setup uses basic auth for simplicity reasons, but other authentication mechanism can be used for this as well.
3232

33-
- [Server](https://github.com/yidongnan/grpc-spring-boot-starter/tree/master/examples/security-grpc-server)
34-
- [Client](https://github.com/yidongnan/grpc-spring-boot-starter/tree/master/examples/security-grpc-client)
35-
- [Instructions](https://github.com/yidongnan/grpc-spring-boot-starter/tree/master/examples#with-basic-auth-security)
33+
- [Server](https://github.com/grpc-ecosystem/grpc-spring/tree/master/examples/security-grpc-server)
34+
- [Client](https://github.com/grpc-ecosystem/grpc-spring/tree/master/examples/security-grpc-client)
35+
- [Instructions](https://github.com/grpc-ecosystem/grpc-spring/tree/master/examples#with-basic-auth-security)

docs/en/server/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ You can find all build-in configuration properties here:
3535
- [`GrpcServerProperties.Security`](https://javadoc.io/page/net.devh/grpc-server-spring-boot-autoconfigure/latest/net/devh/boot/grpc/server/config/GrpcServerProperties.Security.html)
3636

3737
If you prefer to read the sources instead, you can do so
38-
[here](https://github.com/yidongnan/grpc-spring-boot-starter/blob/master/grpc-server-spring-boot-autoconfigure/src/main/java/net/devh/boot/grpc/server/config/GrpcServerProperties.java#L50).
38+
[here](https://github.com/grpc-ecosystem/grpc-spring/blob/master/grpc-server-spring-boot-autoconfigure/src/main/java/net/devh/boot/grpc/server/config/GrpcServerProperties.java#L50).
3939

4040
The properties for the server are all prefixed with `grpc.server.` and `grpc.server.security.` respectively.
4141

docs/en/server/testing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ We all know how important it is to test our application, so I will only refer yo
3434

3535
- [Testing Spring](https://docs.spring.io/spring/docs/current/spring-framework-reference/testing.html)
3636
- [Testing with JUnit](https://junit.org/junit5/docs/current/user-guide/#writing-tests)
37-
- [grpc-spring-boot-starter's Tests](https://github.com/yidongnan/grpc-spring-boot-starter/tree/master/tests/src/test/java/net/devh/boot/grpc/test)
37+
- [grpc-spring-boot-starter's Tests](https://github.com/grpc-ecosystem/grpc-spring/tree/master/tests/src/test/java/net/devh/boot/grpc/test)
3838

3939
Generally there are three ways to test your grpc service:
4040

docs/en/versions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ If you need a patched version, please open an issue.
3535

3636
This table shows the spring and gRPC version that this library ships.
3737
In most cases you can upgrade to newer versions, but especially gRPC changes its API more frequently.
38-
Please report any issues to our [repo](https://github.com/yidongnan/grpc-spring-boot-starter/issues).
38+
Please report any issues to our [repo](https://github.com/grpc-ecosystem/grpc-spring/issues).
3939

4040
> **Note**
4141
>
@@ -106,7 +106,7 @@ If you upgrade any of the versions we strongly recommend doing so using a bom:
106106

107107
Refer to the release notes for more information on the changes for each version:
108108

109-
- [grpc-spring-boot-starter](https://github.com/yidongnan/grpc-spring-boot-starter/releases)
109+
- [grpc-spring-boot-starter](https://github.com/grpc-ecosystem/grpc-spring/releases)
110110
- [spring-boot](https://github.com/spring-projects/spring-boot/releases)
111111
- [grpc-java](https://github.com/grpc/grpc-java/releases)
112112

0 commit comments

Comments
 (0)