Rename explicit references to github org

This commit is contained in:
Dave Syer
2025-04-23 10:21:30 +01:00
parent d52079e375
commit eb82d462e9
18 changed files with 42 additions and 42 deletions

View File

@@ -6,7 +6,7 @@ on:
jobs:
check_samples:
name: Check Samples project
if: github.repository == 'spring-projects-experimental/spring-grpc'
if: github.repository == 'spring-projects/spring-grpc'
strategy:
matrix:
include:

View File

@@ -10,7 +10,7 @@ on:
jobs:
build_and_verify:
name: Build and Verify
if: github.repository == 'spring-projects-experimental/spring-grpc'
if: github.repository == 'spring-projects/spring-grpc'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

View File

@@ -10,7 +10,7 @@ jobs:
name: Build and Deploy On Push
runs-on: ubuntu-latest
if: ${{ github.repository == 'spring-projects-experimental/spring-grpc' }}
if: ${{ github.repository == 'spring-projects/spring-grpc' }}
steps:
- uses: actions/checkout@v4

View File

@@ -12,7 +12,7 @@ permissions:
contents: write
jobs:
build:
if: github.repository_owner == 'spring-projects-experimental'
if: github.repository_owner == 'spring-projects'
runs-on: ubuntu-latest
steps:
- name: Checkout

View File

@@ -14,7 +14,7 @@ The `-Pjavadoc` is a profile that enables Javadoc processing so as to avoid a lo
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.
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).
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).
</dd></dl>
## Contributing a New GRPC Features

View File

@@ -1,5 +1,5 @@
# Spring gRPC
!["Build Status"](https://github.com/spring-projects-experimental/spring-grpc/actions/workflows/deploy.yml/badge.svg)
!["Build Status"](https://github.com/spring-projects/spring-grpc/actions/workflows/deploy.yml/badge.svg)
Welcome to the Spring gRPC project!
@@ -9,7 +9,7 @@ For further information go to our [Spring gRPC reference documentation](https://
# Getting Started
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.
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.
Want to get started? Lets speedrun a working service.

14
pom.xml
View File

@@ -8,7 +8,7 @@
<version>0.8.0-SNAPSHOT</version>
<packaging>pom</packaging>
<url>https://github.com/spring-projects-experimental/spring-grpc</url>
<url>https://github.com/spring-projects/spring-grpc</url>
<name>Spring gRPC</name>
<description>Building gRPC applications with Spring Boot</description>
@@ -32,20 +32,20 @@
<url>https://spring.io</url>
</organization>
<scm>
<url>https://github.com/spring-projects-experimental/spring-grpc</url>
<connection>git://github.com/spring-projects-experimental/spring-grpc.git</connection>
<developerConnection>git@github.com:spring-projects-experimental/spring-grpc.git</developerConnection>
<url>https://github.com/spring-projects/spring-grpc</url>
<connection>git://github.com/spring-projects/spring-grpc.git</connection>
<developerConnection>git@github.com:spring-projects/spring-grpc.git</developerConnection>
</scm>
<issueManagement>
<system>Github Issues</system>
<url>https://github.com/spring-projects-experimental/spring-grpc/issues</url>
<url>https://github.com/spring-projects/spring-grpc/issues</url>
</issueManagement>
<ciManagement>
<system>Github Actions</system>
<url>https://github.com/spring-projects-experimental/spring-grpc/actions</url>
<url>https://github.com/spring-projects/spring-grpc/actions</url>
</ciManagement>
<distributionManagement>
<downloadUrl>https://github.com/spring-projects-experimental/spring-grpc</downloadUrl>
<downloadUrl>https://github.com/spring-projects/spring-grpc</downloadUrl>
<site>
<id>spring-docs</id>
<url>scp://static.springframework.org/var/www/domains/springframework.org/static/htdocs/spring-grpc/docs/${project.artifactId}/${project.version}</url>

View File

@@ -39,7 +39,7 @@ dependencies {
implementation 'io.grpc:grpc-services'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.grpc:spring-grpc-test'
testImplementation 'org.springframework.experimental.boot:spring-boot-testjars-maven:0.0.3'
testImplementation 'org.springframework.experimental.boot:spring-boot-testjars-maven:0.0.4'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}

View File

@@ -14,7 +14,7 @@ These additional references should also help you:
* [Gradle Build Scans insights for your project's build](https://scans.gradle.com#gradle)
* [Configure AOT settings in Build Plugin](https://docs.spring.io/spring-boot/3.4.4/how-to/aot.html)
* [Various sample apps using Spring gRPC](https://github.com/spring-projects-experimental/spring-grpc/tree/main/samples)
* [Various sample apps using Spring gRPC](https://github.com/spring-projects/spring-grpc/tree/main/samples)
## GraalVM Native Support

View File

@@ -13,7 +13,7 @@ For further reference, please consider the following sections:
These additional references should also help you:
* [Configure AOT settings in Build Plugin](https://docs.spring.io/spring-boot/3.4.4/how-to/aot.html)
* [Various sample apps using Spring gRPC](https://github.com/spring-projects-experimental/spring-grpc/tree/main/samples)
* [Various sample apps using Spring gRPC](https://github.com/spring-projects/spring-grpc/tree/main/samples)
## GraalVM Native Support

View File

@@ -12,16 +12,16 @@
<name>Spring gRPC build dependencies</name>
<description>Dependencies for the Spring gRPC modules</description>
<url>https://github.com/spring-projects-experimental/spring-grpc</url>
<url>https://github.com/spring-projects/spring-grpc</url>
<scm>
<url>https://github.com/spring-projects-experimental/spring-grpc</url>
<connection>git://github.com/spring-projects-experimental/spring-grpc.git</connection>
<developerConnection>git@github.com:spring-projects-experimental/spring-grpc.git</developerConnection>
<url>https://github.com/spring-projects/spring-grpc</url>
<connection>git://github.com/spring-projects/spring-grpc.git</connection>
<developerConnection>git@github.com:spring-projects/spring-grpc.git</developerConnection>
</scm>
<distributionManagement>
<downloadUrl>https://github.com/spring-projects-experimental/spring-grpc</downloadUrl>
<downloadUrl>https://github.com/spring-projects/spring-grpc</downloadUrl>
<site>
<id>spring-docs</id>
<url>scp://static.springframework.org/var/www/domains/springframework.org/static/htdocs/spring-grpc/docs/${project.artifactId}/${project.version}</url>

View File

@@ -12,13 +12,13 @@
<packaging>jar</packaging>
<name>Spring gRPC Core</name>
<description>Core module for gRPC programming</description>
<url>https://github.com/spring-projects-experimental/spring-grpc</url>
<url>https://github.com/spring-projects/spring-grpc</url>
<scm>
<url>https://github.com/spring-projects-experimental/spring-grpc</url>
<connection>git://github.com/spring-projects-experimental/spring-grpc.git
<url>https://github.com/spring-projects/spring-grpc</url>
<connection>git://github.com/spring-projects/spring-grpc.git
</connection>
<developerConnection>git@github.com:spring-projects-experimental/spring-grpc.git
<developerConnection>git@github.com:spring-projects/spring-grpc.git
</developerConnection>
</scm>

View File

@@ -12,16 +12,16 @@
<name>Spring gRPC (Bill of Materials)</name>
<description>Bill of Materials for the Spring gRPC modules</description>
<url>https://github.com/spring-projects-experimental/spring-grpc</url>
<url>https://github.com/spring-projects/spring-grpc</url>
<scm>
<url>https://github.com/spring-projects-experimental/spring-grpc</url>
<connection>git://github.com/spring-projects-experimental/spring-grpc.git</connection>
<developerConnection>git@github.com:spring-projects-experimental/spring-grpc.git</developerConnection>
<url>https://github.com/spring-projects/spring-grpc</url>
<connection>git://github.com/spring-projects/spring-grpc.git</connection>
<developerConnection>git@github.com:spring-projects/spring-grpc.git</developerConnection>
</scm>
<distributionManagement>
<downloadUrl>https://github.com/spring-projects-experimental/spring-grpc</downloadUrl>
<downloadUrl>https://github.com/spring-projects/spring-grpc</downloadUrl>
<site>
<id>spring-docs</id>
<url>scp://static.springframework.org/var/www/domains/springframework.org/static/htdocs/spring-grpc/docs/${project.artifactId}/${project.version}</url>

View File

@@ -6,7 +6,7 @@ Edit the files in the spring-grpc-docs/src/main/antora/ directory instead.
:doctype: book
= Spring gRPC
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"]
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"]
Welcome to the Spring gRPC project!

View File

@@ -15,7 +15,7 @@ The `-Pjavadoc` is a profile that enables Javadoc processing so as to avoid a lo
====
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.
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].
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].
====
== Contributing a New GRPC Features

View File

@@ -1,7 +1,7 @@
[[getting-started]]
= Getting Started
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.
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.
Want to get started? Let's speedrun a working service.

View File

@@ -12,12 +12,12 @@
<packaging>jar</packaging>
<name>Spring gRPC Auto Configuration</name>
<description>Spring gRPC Auto Configuration</description>
<url>https://github.com/spring-projects-experimental/spring-grpc</url>
<url>https://github.com/spring-projects/spring-grpc</url>
<scm>
<url>https://github.com/spring-projects-experimental/spring-grpc</url>
<connection>git://github.com/spring-projects-experimental/spring-grpc.git</connection>
<developerConnection>git@github.com:spring-projects-experimental/spring-grpc.git</developerConnection>
<url>https://github.com/spring-projects/spring-grpc</url>
<connection>git://github.com/spring-projects/spring-grpc.git</connection>
<developerConnection>git@github.com:spring-projects/spring-grpc.git</developerConnection>
</scm>
<properties>

View File

@@ -11,12 +11,12 @@
<artifactId>spring-grpc-test</artifactId>
<name>Spring gRPC Test</name>
<description>Test support for gRPC programming</description>
<url>https://github.com/spring-projects-experimental/spring-grpc</url>
<url>https://github.com/spring-projects/spring-grpc</url>
<scm>
<url>https://github.com/spring-projects-experimental/spring-grpc</url>
<connection>git://github.com/spring-projects-experimental/spring-grpc.git</connection>
<developerConnection>git@github.com:spring-projects-experimental/spring-grpc.git</developerConnection>
<url>https://github.com/spring-projects/spring-grpc</url>
<connection>git://github.com/spring-projects/spring-grpc.git</connection>
<developerConnection>git@github.com:spring-projects/spring-grpc.git</developerConnection>
</scm>
<properties>