Skip to content

Commit eb82d46

Browse files
committed
Rename explicit references to github org
1 parent d52079e commit eb82d46

File tree

18 files changed

+42
-42
lines changed

18 files changed

+42
-42
lines changed

.github/workflows/check-samples.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
jobs:
77
check_samples:
88
name: Check Samples project
9-
if: github.repository == 'spring-projects-experimental/spring-grpc'
9+
if: github.repository == 'spring-projects/spring-grpc'
1010
strategy:
1111
matrix:
1212
include:

.github/workflows/ci-pr.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
build_and_verify:
1212
name: Build and Verify
13-
if: github.repository == 'spring-projects-experimental/spring-grpc'
13+
if: github.repository == 'spring-projects/spring-grpc'
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@v4

.github/workflows/deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: Build and Deploy On Push
1111

1212
runs-on: ubuntu-latest
13-
if: ${{ github.repository == 'spring-projects-experimental/spring-grpc' }}
13+
if: ${{ github.repository == 'spring-projects/spring-grpc' }}
1414

1515
steps:
1616
- uses: actions/checkout@v4

.github/workflows/docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212
contents: write
1313
jobs:
1414
build:
15-
if: github.repository_owner == 'spring-projects-experimental'
15+
if: github.repository_owner == 'spring-projects'
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The `-Pjavadoc` is a profile that enables Javadoc processing so as to avoid a lo
1414

1515
We use the [Spring JavaFormat](https://github.com/spring-io/spring-javaformat) project to apply code formatting conventions as well as checkstyle rules for many of our code conventions.
1616

17-
The code can also be formatted from your IDE when the formatter plugin [has been installed](https://github.com/spring-projects-experimental/spring-grpc/wiki/Working-with-the-Code#install-the-spring-formatter-plugin).
17+
The code can also be formatted from your IDE when the formatter plugin [has been installed](https://github.com/spring-projects/spring-grpc/wiki/Working-with-the-Code#install-the-spring-formatter-plugin).
1818
</dd></dl>
1919

2020
## Contributing a New GRPC Features

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Spring gRPC
2-
!["Build Status"](https://github.com/spring-projects-experimental/spring-grpc/actions/workflows/deploy.yml/badge.svg)
2+
!["Build Status"](https://github.com/spring-projects/spring-grpc/actions/workflows/deploy.yml/badge.svg)
33

44
Welcome to the Spring gRPC project!
55

@@ -9,7 +9,7 @@ For further information go to our [Spring gRPC reference documentation](https://
99

1010
# Getting Started
1111

12-
This section offers jumping off points for how to get started using Spring gRPC. There is a simple sample project in the `samples` directory (e.g. [`grpc-server`](https://github.com/spring-projects-experimental/spring-grpc/tree/main/samples/grpc-server)). You can run it with `mvn spring-boot:run` or `gradle bootRun`. You will see the following code in that sample.
12+
This section offers jumping off points for how to get started using Spring gRPC. There is a simple sample project in the `samples` directory (e.g. [`grpc-server`](https://github.com/spring-projects/spring-grpc/tree/main/samples/grpc-server)). You can run it with `mvn spring-boot:run` or `gradle bootRun`. You will see the following code in that sample.
1313

1414
Want to get started? Let’s speedrun a working service.
1515

pom.xml

+7-7
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<version>0.8.0-SNAPSHOT</version>
99

1010
<packaging>pom</packaging>
11-
<url>https://github.com/spring-projects-experimental/spring-grpc</url>
11+
<url>https://github.com/spring-projects/spring-grpc</url>
1212

1313
<name>Spring gRPC</name>
1414
<description>Building gRPC applications with Spring Boot</description>
@@ -32,20 +32,20 @@
3232
<url>https://spring.io</url>
3333
</organization>
3434
<scm>
35-
<url>https://github.com/spring-projects-experimental/spring-grpc</url>
36-
<connection>git://github.com/spring-projects-experimental/spring-grpc.git</connection>
37-
<developerConnection>[email protected]:spring-projects-experimental/spring-grpc.git</developerConnection>
35+
<url>https://github.com/spring-projects/spring-grpc</url>
36+
<connection>git://github.com/spring-projects/spring-grpc.git</connection>
37+
<developerConnection>[email protected]:spring-projects/spring-grpc.git</developerConnection>
3838
</scm>
3939
<issueManagement>
4040
<system>Github Issues</system>
41-
<url>https://github.com/spring-projects-experimental/spring-grpc/issues</url>
41+
<url>https://github.com/spring-projects/spring-grpc/issues</url>
4242
</issueManagement>
4343
<ciManagement>
4444
<system>Github Actions</system>
45-
<url>https://github.com/spring-projects-experimental/spring-grpc/actions</url>
45+
<url>https://github.com/spring-projects/spring-grpc/actions</url>
4646
</ciManagement>
4747
<distributionManagement>
48-
<downloadUrl>https://github.com/spring-projects-experimental/spring-grpc</downloadUrl>
48+
<downloadUrl>https://github.com/spring-projects/spring-grpc</downloadUrl>
4949
<site>
5050
<id>spring-docs</id>
5151
<url>scp://static.springframework.org/var/www/domains/springframework.org/static/htdocs/spring-grpc/docs/${project.artifactId}/${project.version}</url>

samples/grpc-oauth2/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ dependencies {
3939
implementation 'io.grpc:grpc-services'
4040
testImplementation 'org.springframework.boot:spring-boot-starter-test'
4141
testImplementation 'org.springframework.grpc:spring-grpc-test'
42-
testImplementation 'org.springframework.experimental.boot:spring-boot-testjars-maven:0.0.3'
42+
testImplementation 'org.springframework.experimental.boot:spring-boot-testjars-maven:0.0.4'
4343
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
4444
}
4545

samples/grpc-server/HELP-gradle.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ These additional references should also help you:
1414

1515
* [Gradle Build Scans – insights for your project's build](https://scans.gradle.com#gradle)
1616
* [Configure AOT settings in Build Plugin](https://docs.spring.io/spring-boot/3.4.4/how-to/aot.html)
17-
* [Various sample apps using Spring gRPC](https://github.com/spring-projects-experimental/spring-grpc/tree/main/samples)
17+
* [Various sample apps using Spring gRPC](https://github.com/spring-projects/spring-grpc/tree/main/samples)
1818

1919
## GraalVM Native Support
2020

samples/grpc-server/HELP-maven.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ For further reference, please consider the following sections:
1313
These additional references should also help you:
1414

1515
* [Configure AOT settings in Build Plugin](https://docs.spring.io/spring-boot/3.4.4/how-to/aot.html)
16-
* [Various sample apps using Spring gRPC](https://github.com/spring-projects-experimental/spring-grpc/tree/main/samples)
16+
* [Various sample apps using Spring gRPC](https://github.com/spring-projects/spring-grpc/tree/main/samples)
1717

1818
## GraalVM Native Support
1919

spring-grpc-build-dependencies/pom.xml

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@
1212
<name>Spring gRPC build dependencies</name>
1313
<description>Dependencies for the Spring gRPC modules</description>
1414

15-
<url>https://github.com/spring-projects-experimental/spring-grpc</url>
15+
<url>https://github.com/spring-projects/spring-grpc</url>
1616

1717
<scm>
18-
<url>https://github.com/spring-projects-experimental/spring-grpc</url>
19-
<connection>git://github.com/spring-projects-experimental/spring-grpc.git</connection>
20-
<developerConnection>[email protected]:spring-projects-experimental/spring-grpc.git</developerConnection>
18+
<url>https://github.com/spring-projects/spring-grpc</url>
19+
<connection>git://github.com/spring-projects/spring-grpc.git</connection>
20+
<developerConnection>[email protected]:spring-projects/spring-grpc.git</developerConnection>
2121
</scm>
2222

2323
<distributionManagement>
24-
<downloadUrl>https://github.com/spring-projects-experimental/spring-grpc</downloadUrl>
24+
<downloadUrl>https://github.com/spring-projects/spring-grpc</downloadUrl>
2525
<site>
2626
<id>spring-docs</id>
2727
<url>scp://static.springframework.org/var/www/domains/springframework.org/static/htdocs/spring-grpc/docs/${project.artifactId}/${project.version}</url>

spring-grpc-core/pom.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
<packaging>jar</packaging>
1313
<name>Spring gRPC Core</name>
1414
<description>Core module for gRPC programming</description>
15-
<url>https://github.com/spring-projects-experimental/spring-grpc</url>
15+
<url>https://github.com/spring-projects/spring-grpc</url>
1616

1717
<scm>
18-
<url>https://github.com/spring-projects-experimental/spring-grpc</url>
19-
<connection>git://github.com/spring-projects-experimental/spring-grpc.git
18+
<url>https://github.com/spring-projects/spring-grpc</url>
19+
<connection>git://github.com/spring-projects/spring-grpc.git
2020
</connection>
21-
<developerConnection>[email protected]:spring-projects-experimental/spring-grpc.git
21+
<developerConnection>[email protected]:spring-projects/spring-grpc.git
2222
</developerConnection>
2323
</scm>
2424

spring-grpc-dependencies/pom.xml

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@
1212
<name>Spring gRPC (Bill of Materials)</name>
1313
<description>Bill of Materials for the Spring gRPC modules</description>
1414

15-
<url>https://github.com/spring-projects-experimental/spring-grpc</url>
15+
<url>https://github.com/spring-projects/spring-grpc</url>
1616

1717
<scm>
18-
<url>https://github.com/spring-projects-experimental/spring-grpc</url>
19-
<connection>git://github.com/spring-projects-experimental/spring-grpc.git</connection>
20-
<developerConnection>[email protected]:spring-projects-experimental/spring-grpc.git</developerConnection>
18+
<url>https://github.com/spring-projects/spring-grpc</url>
19+
<connection>git://github.com/spring-projects/spring-grpc.git</connection>
20+
<developerConnection>[email protected]:spring-projects/spring-grpc.git</developerConnection>
2121
</scm>
2222

2323
<distributionManagement>
24-
<downloadUrl>https://github.com/spring-projects-experimental/spring-grpc</downloadUrl>
24+
<downloadUrl>https://github.com/spring-projects/spring-grpc</downloadUrl>
2525
<site>
2626
<id>spring-docs</id>
2727
<url>scp://static.springframework.org/var/www/domains/springframework.org/static/htdocs/spring-grpc/docs/${project.artifactId}/${project.version}</url>

spring-grpc-docs/src/main/antora/modules/ROOT/pages/README.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Edit the files in the spring-grpc-docs/src/main/antora/ directory instead.
66
:doctype: book
77

88
= Spring gRPC
9-
image::https://github.com/spring-projects-experimental/spring-grpc/actions/workflows/deploy.yml/badge.svg["Build Status", link="https://github.com/spring-projects/spring-grpc/actions/workflows/deploy.yml"]
9+
image::https://github.com/spring-projects/spring-grpc/actions/workflows/deploy.yml/badge.svg["Build Status", link="https://github.com/spring-projects/spring-grpc/actions/workflows/deploy.yml"]
1010

1111
Welcome to the Spring gRPC project!
1212

spring-grpc-docs/src/main/antora/modules/ROOT/pages/contribution-guidelines.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The `-Pjavadoc` is a profile that enables Javadoc processing so as to avoid a lo
1515
====
1616
We use the https://github.com/spring-io/spring-javaformat[Spring JavaFormat] project to apply code formatting conventions as well as checkstyle rules for many of our code conventions.
1717
18-
The code can also be formatted from your IDE when the formatter plugin https://github.com/spring-projects-experimental/spring-grpc/wiki/Working-with-the-Code#install-the-spring-formatter-plugin[has been installed].
18+
The code can also be formatted from your IDE when the formatter plugin https://github.com/spring-projects/spring-grpc/wiki/Working-with-the-Code#install-the-spring-formatter-plugin[has been installed].
1919
====
2020

2121
== Contributing a New GRPC Features

spring-grpc-docs/src/main/antora/modules/ROOT/pages/getting-started.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[[getting-started]]
22
= Getting Started
33

4-
This section offers jumping off points for how to get started using Spring gRPC. There is a simple sample project in the `samples` directory (e.g. https://github.com/spring-projects-experimental/spring-grpc/tree/main/samples/grpc-server[`grpc-server`]). You can run it with `mvn spring-boot:run` or `gradle bootRun`. You will see the following code in that sample.
4+
This section offers jumping off points for how to get started using Spring gRPC. There is a simple sample project in the `samples` directory (e.g. https://github.com/spring-projects/spring-grpc/tree/main/samples/grpc-server[`grpc-server`]). You can run it with `mvn spring-boot:run` or `gradle bootRun`. You will see the following code in that sample.
55

66
Want to get started? Let's speedrun a working service.
77

spring-grpc-spring-boot-autoconfigure/pom.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
<packaging>jar</packaging>
1313
<name>Spring gRPC Auto Configuration</name>
1414
<description>Spring gRPC Auto Configuration</description>
15-
<url>https://github.com/spring-projects-experimental/spring-grpc</url>
15+
<url>https://github.com/spring-projects/spring-grpc</url>
1616

1717
<scm>
18-
<url>https://github.com/spring-projects-experimental/spring-grpc</url>
19-
<connection>git://github.com/spring-projects-experimental/spring-grpc.git</connection>
20-
<developerConnection>[email protected]:spring-projects-experimental/spring-grpc.git</developerConnection>
18+
<url>https://github.com/spring-projects/spring-grpc</url>
19+
<connection>git://github.com/spring-projects/spring-grpc.git</connection>
20+
<developerConnection>[email protected]:spring-projects/spring-grpc.git</developerConnection>
2121
</scm>
2222

2323
<properties>

spring-grpc-test/pom.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
<artifactId>spring-grpc-test</artifactId>
1212
<name>Spring gRPC Test</name>
1313
<description>Test support for gRPC programming</description>
14-
<url>https://github.com/spring-projects-experimental/spring-grpc</url>
14+
<url>https://github.com/spring-projects/spring-grpc</url>
1515

1616
<scm>
17-
<url>https://github.com/spring-projects-experimental/spring-grpc</url>
18-
<connection>git://github.com/spring-projects-experimental/spring-grpc.git</connection>
19-
<developerConnection>[email protected]:spring-projects-experimental/spring-grpc.git</developerConnection>
17+
<url>https://github.com/spring-projects/spring-grpc</url>
18+
<connection>git://github.com/spring-projects/spring-grpc.git</connection>
19+
<developerConnection>[email protected]:spring-projects/spring-grpc.git</developerConnection>
2020
</scm>
2121

2222
<properties>

0 commit comments

Comments
 (0)