diff --git a/.github/workflows/check-samples.yml b/.github/workflows/check-samples.yml index 2a6ea26..a748f7c 100644 --- a/.github/workflows/check-samples.yml +++ b/.github/workflows/check-samples.yml @@ -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: diff --git a/.github/workflows/ci-pr.yml b/.github/workflows/ci-pr.yml index 2f49543..02a542f 100644 --- a/.github/workflows/ci-pr.yml +++ b/.github/workflows/ci-pr.yml @@ -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 diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 87df2cd..775b905 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -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 diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index e14de37..6a31a45 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -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 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 29e1714..e75b9fe 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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). ## Contributing a New GRPC Features diff --git a/README.md b/README.md index 05493b3..d6e7f7b 100644 --- a/README.md +++ b/README.md @@ -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? Let’s speedrun a working service. diff --git a/pom.xml b/pom.xml index 0cfa0ea..48217fa 100644 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ 0.8.0-SNAPSHOT pom - https://github.com/spring-projects-experimental/spring-grpc + https://github.com/spring-projects/spring-grpc Spring gRPC Building gRPC applications with Spring Boot @@ -32,20 +32,20 @@ https://spring.io - https://github.com/spring-projects-experimental/spring-grpc - git://github.com/spring-projects-experimental/spring-grpc.git - git@github.com:spring-projects-experimental/spring-grpc.git + https://github.com/spring-projects/spring-grpc + git://github.com/spring-projects/spring-grpc.git + git@github.com:spring-projects/spring-grpc.git Github Issues - https://github.com/spring-projects-experimental/spring-grpc/issues + https://github.com/spring-projects/spring-grpc/issues Github Actions - https://github.com/spring-projects-experimental/spring-grpc/actions + https://github.com/spring-projects/spring-grpc/actions - https://github.com/spring-projects-experimental/spring-grpc + https://github.com/spring-projects/spring-grpc spring-docs scp://static.springframework.org/var/www/domains/springframework.org/static/htdocs/spring-grpc/docs/${project.artifactId}/${project.version} diff --git a/samples/grpc-oauth2/build.gradle b/samples/grpc-oauth2/build.gradle index fa19cd9..75dfcab 100644 --- a/samples/grpc-oauth2/build.gradle +++ b/samples/grpc-oauth2/build.gradle @@ -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' } diff --git a/samples/grpc-server/HELP-gradle.md b/samples/grpc-server/HELP-gradle.md index b77b218..0609cc0 100644 --- a/samples/grpc-server/HELP-gradle.md +++ b/samples/grpc-server/HELP-gradle.md @@ -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 diff --git a/samples/grpc-server/HELP-maven.md b/samples/grpc-server/HELP-maven.md index 4fc9cde..bad6436 100644 --- a/samples/grpc-server/HELP-maven.md +++ b/samples/grpc-server/HELP-maven.md @@ -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 diff --git a/spring-grpc-build-dependencies/pom.xml b/spring-grpc-build-dependencies/pom.xml index ec0051c..d3f916a 100644 --- a/spring-grpc-build-dependencies/pom.xml +++ b/spring-grpc-build-dependencies/pom.xml @@ -12,16 +12,16 @@ Spring gRPC build dependencies Dependencies for the Spring gRPC modules - https://github.com/spring-projects-experimental/spring-grpc + https://github.com/spring-projects/spring-grpc - https://github.com/spring-projects-experimental/spring-grpc - git://github.com/spring-projects-experimental/spring-grpc.git - git@github.com:spring-projects-experimental/spring-grpc.git + https://github.com/spring-projects/spring-grpc + git://github.com/spring-projects/spring-grpc.git + git@github.com:spring-projects/spring-grpc.git - https://github.com/spring-projects-experimental/spring-grpc + https://github.com/spring-projects/spring-grpc spring-docs scp://static.springframework.org/var/www/domains/springframework.org/static/htdocs/spring-grpc/docs/${project.artifactId}/${project.version} diff --git a/spring-grpc-core/pom.xml b/spring-grpc-core/pom.xml index 7c64d38..09d378d 100644 --- a/spring-grpc-core/pom.xml +++ b/spring-grpc-core/pom.xml @@ -12,13 +12,13 @@ jar Spring gRPC Core Core module for gRPC programming - https://github.com/spring-projects-experimental/spring-grpc + https://github.com/spring-projects/spring-grpc - https://github.com/spring-projects-experimental/spring-grpc - git://github.com/spring-projects-experimental/spring-grpc.git + https://github.com/spring-projects/spring-grpc + git://github.com/spring-projects/spring-grpc.git - git@github.com:spring-projects-experimental/spring-grpc.git + git@github.com:spring-projects/spring-grpc.git diff --git a/spring-grpc-dependencies/pom.xml b/spring-grpc-dependencies/pom.xml index f76d835..c4d225d 100644 --- a/spring-grpc-dependencies/pom.xml +++ b/spring-grpc-dependencies/pom.xml @@ -12,16 +12,16 @@ Spring gRPC (Bill of Materials) Bill of Materials for the Spring gRPC modules - https://github.com/spring-projects-experimental/spring-grpc + https://github.com/spring-projects/spring-grpc - https://github.com/spring-projects-experimental/spring-grpc - git://github.com/spring-projects-experimental/spring-grpc.git - git@github.com:spring-projects-experimental/spring-grpc.git + https://github.com/spring-projects/spring-grpc + git://github.com/spring-projects/spring-grpc.git + git@github.com:spring-projects/spring-grpc.git - https://github.com/spring-projects-experimental/spring-grpc + https://github.com/spring-projects/spring-grpc spring-docs scp://static.springframework.org/var/www/domains/springframework.org/static/htdocs/spring-grpc/docs/${project.artifactId}/${project.version} diff --git a/spring-grpc-docs/src/main/antora/modules/ROOT/pages/README.adoc b/spring-grpc-docs/src/main/antora/modules/ROOT/pages/README.adoc index 401bcb7..d72d798 100644 --- a/spring-grpc-docs/src/main/antora/modules/ROOT/pages/README.adoc +++ b/spring-grpc-docs/src/main/antora/modules/ROOT/pages/README.adoc @@ -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! diff --git a/spring-grpc-docs/src/main/antora/modules/ROOT/pages/contribution-guidelines.adoc b/spring-grpc-docs/src/main/antora/modules/ROOT/pages/contribution-guidelines.adoc index debe779..29f8673 100644 --- a/spring-grpc-docs/src/main/antora/modules/ROOT/pages/contribution-guidelines.adoc +++ b/spring-grpc-docs/src/main/antora/modules/ROOT/pages/contribution-guidelines.adoc @@ -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 diff --git a/spring-grpc-docs/src/main/antora/modules/ROOT/pages/getting-started.adoc b/spring-grpc-docs/src/main/antora/modules/ROOT/pages/getting-started.adoc index f497b26..b278881 100644 --- a/spring-grpc-docs/src/main/antora/modules/ROOT/pages/getting-started.adoc +++ b/spring-grpc-docs/src/main/antora/modules/ROOT/pages/getting-started.adoc @@ -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. diff --git a/spring-grpc-spring-boot-autoconfigure/pom.xml b/spring-grpc-spring-boot-autoconfigure/pom.xml index 6caebaa..36faf00 100644 --- a/spring-grpc-spring-boot-autoconfigure/pom.xml +++ b/spring-grpc-spring-boot-autoconfigure/pom.xml @@ -12,12 +12,12 @@ jar Spring gRPC Auto Configuration Spring gRPC Auto Configuration - https://github.com/spring-projects-experimental/spring-grpc + https://github.com/spring-projects/spring-grpc - https://github.com/spring-projects-experimental/spring-grpc - git://github.com/spring-projects-experimental/spring-grpc.git - git@github.com:spring-projects-experimental/spring-grpc.git + https://github.com/spring-projects/spring-grpc + git://github.com/spring-projects/spring-grpc.git + git@github.com:spring-projects/spring-grpc.git diff --git a/spring-grpc-test/pom.xml b/spring-grpc-test/pom.xml index 8e884c3..6948ac1 100644 --- a/spring-grpc-test/pom.xml +++ b/spring-grpc-test/pom.xml @@ -11,12 +11,12 @@ spring-grpc-test Spring gRPC Test Test support for gRPC programming - https://github.com/spring-projects-experimental/spring-grpc + https://github.com/spring-projects/spring-grpc - https://github.com/spring-projects-experimental/spring-grpc - git://github.com/spring-projects-experimental/spring-grpc.git - git@github.com:spring-projects-experimental/spring-grpc.git + https://github.com/spring-projects/spring-grpc + git://github.com/spring-projects/spring-grpc.git + git@github.com:spring-projects/spring-grpc.git