diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
index ada628a74..4342d4789 100644
--- a/.github/ISSUE_TEMPLATE/bug_report.md
+++ b/.github/ISSUE_TEMPLATE/bug_report.md
@@ -19,7 +19,7 @@ _A clear and concise description of what the bug is._
If possible, an example or snippet that reproduces the bug.
> Having a reproducible example highly reduces the time to resolution, allows others to participate, and avoids misunderstandings/communications cycles.
-You can support by adjusting one of the [springwolf examples](https://github.com/springwolf/springwolf-core/tree/master/springwolf-examples), so that it reproduces your scenario:
+You can support by adjusting one of the [springwolf examples](https://github.com/springwolf/springwolf-core/tree/main/springwolf-examples), so that it reproduces your scenario:
> 1. Fork this repo (`springwolf-core`) in GitHub and `git clone` it
> 2. Adjust classes, etc. in one of the `springwolf-examples`
> 3. Push your local changes to a branch on your fork (`git commit`, `git push`)
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml
index 3b916ddc2..6af718aea 100644
--- a/.github/workflows/codeql.yml
+++ b/.github/workflows/codeql.yml
@@ -13,9 +13,9 @@ name: "CodeQL Advanced"
on:
# push:
-# branches: [ "master" ]
+# branches: [ "main" ]
# pull_request:
-# branches: [ "master" ]
+# branches: [ "main" ]
workflow_dispatch:
schedule:
- cron: '16 8 * * 5'
diff --git a/.github/workflows/springwolf-addons.yml b/.github/workflows/springwolf-addons.yml
index 0cbd5f18f..33bdd9b2d 100644
--- a/.github/workflows/springwolf-addons.yml
+++ b/.github/workflows/springwolf-addons.yml
@@ -3,7 +3,7 @@ name: springwolf-addons
on:
push:
branches:
- - master
+ - main
pull_request:
types: [ opened, synchronize, ready_for_review ]
workflow_dispatch:
@@ -52,7 +52,7 @@ jobs:
run: ./gradlew -p ${{ env.addon }} build
- name: Publish package
- if: github.ref == 'refs/heads/master'
+ if: github.ref == 'refs/heads/main'
run: ./gradlew -p ${{ env.addon }} publish
env:
ORG_GRADLE_PROJECT_SNAPSHOT: true
diff --git a/.github/workflows/springwolf-asyncapi.yml b/.github/workflows/springwolf-asyncapi.yml
index 8c317b0ba..1e611993a 100644
--- a/.github/workflows/springwolf-asyncapi.yml
+++ b/.github/workflows/springwolf-asyncapi.yml
@@ -3,7 +3,7 @@ name: springwolf-asyncapi
on:
push:
branches:
- - master
+ - main
pull_request:
types: [ opened, synchronize, ready_for_review ]
workflow_dispatch:
@@ -41,7 +41,7 @@ jobs:
run: ./gradlew -p springwolf-asyncapi build
- name: Publish package
- if: github.ref == 'refs/heads/master'
+ if: github.ref == 'refs/heads/main'
run: ./gradlew -p springwolf-asyncapi publish
env:
ORG_GRADLE_PROJECT_SNAPSHOT: true
diff --git a/.github/workflows/springwolf-bindings.yml b/.github/workflows/springwolf-bindings.yml
index 850996c71..91c917088 100644
--- a/.github/workflows/springwolf-bindings.yml
+++ b/.github/workflows/springwolf-bindings.yml
@@ -3,7 +3,7 @@ name: springwolf-bindings
on:
push:
branches:
- - master
+ - main
pull_request:
types: [ opened, synchronize, ready_for_review ]
workflow_dispatch:
@@ -52,7 +52,7 @@ jobs:
run: ./gradlew -p ${{ env.binding }} build
- name: Publish package
- if: github.ref == 'refs/heads/master'
+ if: github.ref == 'refs/heads/main'
run: ./gradlew -p ${{ env.binding }} publish
env:
ORG_GRADLE_PROJECT_SNAPSHOT: true
diff --git a/.github/workflows/springwolf-core.yml b/.github/workflows/springwolf-core.yml
index 4d69f70c6..37c651b3c 100644
--- a/.github/workflows/springwolf-core.yml
+++ b/.github/workflows/springwolf-core.yml
@@ -3,7 +3,7 @@ name: springwolf-core
on:
push:
branches:
- - master
+ - main
pull_request:
types: [ opened, synchronize, ready_for_review ]
workflow_dispatch:
@@ -49,7 +49,7 @@ jobs:
report_paths: '**/build/test-results/test/TEST-*.xml'
- name: Publish package
- if: github.ref == 'refs/heads/master'
+ if: github.ref == 'refs/heads/main'
run: ./gradlew -p springwolf-core publish
env:
ORG_GRADLE_PROJECT_SNAPSHOT: true
diff --git a/.github/workflows/springwolf-plugins.yml b/.github/workflows/springwolf-plugins.yml
index f5ea382bf..86590ecb6 100644
--- a/.github/workflows/springwolf-plugins.yml
+++ b/.github/workflows/springwolf-plugins.yml
@@ -3,7 +3,7 @@ name: springwolf-plugins
on:
push:
branches:
- - master
+ - main
pull_request:
types: [ opened, synchronize, ready_for_review ]
workflow_dispatch:
@@ -81,7 +81,7 @@ jobs:
retention-days: 14
- name: Publish docker image
- if: github.ref == 'refs/heads/master'
+ if: github.ref == 'refs/heads/main'
run: ./gradlew -p ${{ env.example }} dockerBuildImage dockerPushImage
env:
ORG_GRADLE_PROJECT_SNAPSHOT: true
@@ -90,7 +90,7 @@ jobs:
ORG_GRADLE_PROJECT_DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Publish package
- if: github.ref == 'refs/heads/master'
+ if: github.ref == 'refs/heads/main'
run: ./gradlew -p ${{ env.plugin }} publish
env:
ORG_GRADLE_PROJECT_SNAPSHOT: true
diff --git a/.github/workflows/springwolf-ui.yml b/.github/workflows/springwolf-ui.yml
index bce76a18d..1b4d4bd27 100644
--- a/.github/workflows/springwolf-ui.yml
+++ b/.github/workflows/springwolf-ui.yml
@@ -3,7 +3,7 @@ name: springwolf-ui
on:
push:
branches:
- - master
+ - main
pull_request:
types: [ opened, synchronize, ready_for_review ]
workflow_dispatch:
@@ -59,7 +59,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 10
- if: github.ref == 'refs/heads/master'
+ if: github.ref == 'refs/heads/main'
needs: [build]
permissions:
contents: write
@@ -80,7 +80,7 @@ jobs:
uses: gradle/actions/setup-gradle@v5
- name: Publish package
- if: github.ref == 'refs/heads/master'
+ if: github.ref == 'refs/heads/main'
run: ./gradlew -p ${{ env.project }} publish
env:
ORG_GRADLE_PROJECT_SNAPSHOT: true
@@ -92,10 +92,10 @@ jobs:
ORG_GRADLE_PROJECT_MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}
- name: Build gh-pages
- if: github.ref == 'refs/heads/master'
+ if: github.ref == 'refs/heads/main'
run: ./gradlew -p ${{ env.project }} buildPages
- name: Deploy to gh pages 🚀
- if: github.ref == 'refs/heads/master'
+ if: github.ref == 'refs/heads/main'
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: ${{ env.project }}/dist/springwolf-ui/
diff --git a/.github/workflows/welcome-first-time-contrib.yml b/.github/workflows/welcome-first-time-contrib.yml
index 4162efd6c..61150724c 100644
--- a/.github/workflows/welcome-first-time-contrib.yml
+++ b/.github/workflows/welcome-first-time-contrib.yml
@@ -24,8 +24,8 @@ jobs:
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
- const issueMessage = `Welcome to Springwolf. Thanks a lot for reporting your first issue. Please check out our [contributors guide](https://github.com/springwolf/springwolf-core/blob/master/CONTRIBUTING.md) and feel free to join us on discord.`;
- const prMessage = `Welcome to Springwolf. Thanks a lot for creating your first pull request. Please check out our [contributors guide](https://github.com/springwolf/springwolf-core/blob/master/CONTRIBUTING.md) and feel free to join us on discord.`;
+ const issueMessage = `Welcome to Springwolf. Thanks a lot for reporting your first issue. Please check out our [contributors guide](https://github.com/springwolf/springwolf-core/blob/main/CONTRIBUTING.md) and feel free to join us on discord.`;
+ const prMessage = `Welcome to Springwolf. Thanks a lot for creating your first pull request. Please check out our [contributors guide](https://github.com/springwolf/springwolf-core/blob/main/CONTRIBUTING.md) and feel free to join us on discord.`;
if (!issueMessage && !prMessage) {
throw new Error('Action must have at least one of issue-message or pr-message set');
}
diff --git a/README.md b/README.md
index 8f9c68152..d125febf6 100644
--- a/README.md
+++ b/README.md
@@ -67,39 +67,39 @@ More details in the documentation.
| Plugin | Example project | Current version | SNAPSHOT version |
|-----------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| [AMQP](https://github.com/springwolf/springwolf-core/tree/master/springwolf-plugins/springwolf-amqp-plugin) | [AMQP Example](https://github.com/springwolf/springwolf-core/tree/master/springwolf-examples/springwolf-amqp-example) |  |  |
-| [AWS SNS](https://github.com/springwolf/springwolf-core/tree/master/springwolf-plugins/springwolf-sns-plugin) | [AWS SNS Example](https://github.com/springwolf/springwolf-core/tree/master/springwolf-examples/springwolf-sns-example) |  |  |
-| [AWS SQS](https://github.com/springwolf/springwolf-core/tree/master/springwolf-plugins/springwolf-sqs-plugin) | [AWS SQS Example](https://github.com/springwolf/springwolf-core/tree/master/springwolf-examples/springwolf-sqs-example) |  |  |
-| [Cloud Stream](https://github.com/springwolf/springwolf-core/tree/master/springwolf-plugins/springwolf-cloud-stream-plugin) | [Cloud Stream Example](https://github.com/springwolf/springwolf-core/tree/master/springwolf-examples/springwolf-cloud-stream-example) |  |  |
-| [JMS](https://github.com/springwolf/springwolf-core/tree/master/springwolf-plugins/springwolf-jms-plugin) | [JMS Example](https://github.com/springwolf/springwolf-core/tree/master/springwolf-examples/springwolf-jms-example) |  |  |
-| [Kafka](https://github.com/springwolf/springwolf-core/tree/master/springwolf-plugins/springwolf-kafka-plugin) | [Kafka Example](https://github.com/springwolf/springwolf-core/tree/master/springwolf-examples/springwolf-kafka-example) |  |  |
-| [STOMP (WebSocket)](https://github.com/springwolf/springwolf-core/tree/master/springwolf-plugins/springwolf-stomp-plugin) | [STOMP Example](https://github.com/springwolf/springwolf-core/tree/master/springwolf-examples/springwolf-stomp-example) |  |  |
+| [AMQP](https://github.com/springwolf/springwolf-core/tree/main/springwolf-plugins/springwolf-amqp-plugin) | [AMQP Example](https://github.com/springwolf/springwolf-core/tree/main/springwolf-examples/springwolf-amqp-example) |  |  |
+| [AWS SNS](https://github.com/springwolf/springwolf-core/tree/main/springwolf-plugins/springwolf-sns-plugin) | [AWS SNS Example](https://github.com/springwolf/springwolf-core/tree/main/springwolf-examples/springwolf-sns-example) |  |  |
+| [AWS SQS](https://github.com/springwolf/springwolf-core/tree/main/springwolf-plugins/springwolf-sqs-plugin) | [AWS SQS Example](https://github.com/springwolf/springwolf-core/tree/main/springwolf-examples/springwolf-sqs-example) |  |  |
+| [Cloud Stream](https://github.com/springwolf/springwolf-core/tree/main/springwolf-plugins/springwolf-cloud-stream-plugin) | [Cloud Stream Example](https://github.com/springwolf/springwolf-core/tree/main/springwolf-examples/springwolf-cloud-stream-example) |  |  |
+| [JMS](https://github.com/springwolf/springwolf-core/tree/main/springwolf-plugins/springwolf-jms-plugin) | [JMS Example](https://github.com/springwolf/springwolf-core/tree/main/springwolf-examples/springwolf-jms-example) |  |  |
+| [Kafka](https://github.com/springwolf/springwolf-core/tree/main/springwolf-plugins/springwolf-kafka-plugin) | [Kafka Example](https://github.com/springwolf/springwolf-core/tree/main/springwolf-examples/springwolf-kafka-example) |  |  |
+| [STOMP (WebSocket)](https://github.com/springwolf/springwolf-core/tree/main/springwolf-plugins/springwolf-stomp-plugin) | [STOMP Example](https://github.com/springwolf/springwolf-core/tree/main/springwolf-examples/springwolf-stomp-example) |  |  |
Click to expand all artifacts, bindings and add-ons
| Artifact | Current version | SNAPSHOT version |
|----------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| [AsyncAPI implementation](https://github.com/springwolf/springwolf-core/tree/master/springwolf-asyncapi) |  |  |
-| [Core](https://github.com/springwolf/springwolf-core/tree/master/springwolf-core) |  |  |
-| [UI](https://github.com/springwolf/springwolf-core/tree/master/springwolf-ui) |  |  |
+| [AsyncAPI implementation](https://github.com/springwolf/springwolf-core/tree/main/springwolf-asyncapi) |  |  |
+| [Core](https://github.com/springwolf/springwolf-core/tree/main/springwolf-core) |  |  |
+| [UI](https://github.com/springwolf/springwolf-core/tree/main/springwolf-ui) |  |  |
| Bindings | Current version | SNAPSHOT version |
|----------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| [AMQP Binding](https://github.com/springwolf/springwolf-core/tree/master/springwolf-bindings/springwolf-amqp-binding) |  |  |
-| [AWS SNS Binding](https://github.com/springwolf/springwolf-core/tree/master/springwolf-bindings/springwolf-sns-binding) |  |  |
-| [AWS SQS Binding](https://github.com/springwolf/springwolf-core/tree/master/springwolf-bindings/springwolf-sqs-binding) |  |  |
-| [Google PubSub Binding](https://github.com/springwolf/springwolf-core/tree/master/springwolf-bindings/springwolf-googlepubsub-binding) |  |  |
-| [JMS Binding](https://github.com/springwolf/springwolf-core/tree/master/springwolf-bindings/springwolf-jms-binding) |  |  |
-| [Kafka Binding](https://github.com/springwolf/springwolf-core/tree/master/springwolf-bindings/springwolf-kafka-binding) |  |  |
-| [STOMP Binding](https://github.com/springwolf/springwolf-core/tree/master/springwolf-bindings/springwolf-stomp-binding) |  |  |
+| [AMQP Binding](https://github.com/springwolf/springwolf-core/tree/main/springwolf-bindings/springwolf-amqp-binding) |  |  |
+| [AWS SNS Binding](https://github.com/springwolf/springwolf-core/tree/main/springwolf-bindings/springwolf-sns-binding) |  |  |
+| [AWS SQS Binding](https://github.com/springwolf/springwolf-core/tree/main/springwolf-bindings/springwolf-sqs-binding) |  |  |
+| [Google PubSub Binding](https://github.com/springwolf/springwolf-core/tree/main/springwolf-bindings/springwolf-googlepubsub-binding) |  |  |
+| [JMS Binding](https://github.com/springwolf/springwolf-core/tree/main/springwolf-bindings/springwolf-jms-binding) |  |  |
+| [Kafka Binding](https://github.com/springwolf/springwolf-core/tree/main/springwolf-bindings/springwolf-kafka-binding) |  |  |
+| [STOMP Binding](https://github.com/springwolf/springwolf-core/tree/main/springwolf-bindings/springwolf-stomp-binding) |  |  |
| Add-on | Current version | SNAPSHOT version |
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
-| [Common Model Converter](https://github.com/springwolf/springwolf-core/tree/master/springwolf-add-ons/springwolf-common-model-converters) |  |  |
-| [Generic Binding](https://github.com/springwolf/springwolf-core/tree/master/springwolf-add-ons/springwolf-generic-binding) |  |  |
-| [Json Schema](https://github.com/springwolf/springwolf-core/tree/master/springwolf-add-ons/springwolf-json-schema) |  |  |
-| [Kotlinx Serialization Model Converter](https://github.com/springwolf/springwolf-core/tree/master/springwolf-add-ons/springwolf-kotlinx-serialization-model-converter) |  |  |
+| [Common Model Converter](https://github.com/springwolf/springwolf-core/tree/main/springwolf-add-ons/springwolf-common-model-converters) |  |  |
+| [Generic Binding](https://github.com/springwolf/springwolf-core/tree/main/springwolf-add-ons/springwolf-generic-binding) |  |  |
+| [Json Schema](https://github.com/springwolf/springwolf-core/tree/main/springwolf-add-ons/springwolf-json-schema) |  |  |
+| [Kotlinx Serialization Model Converter](https://github.com/springwolf/springwolf-core/tree/main/springwolf-add-ons/springwolf-kotlinx-serialization-model-converter) |  |  |
### 🚀 Who's Using Springwolf
diff --git a/RELEASING.md b/RELEASING.md
index 092b8bc79..49b7cc4ac 100644
--- a/RELEASING.md
+++ b/RELEASING.md
@@ -14,7 +14,7 @@ The following list describe the steps necessary to release a new version.
3. Update `all-contributors` in [README.md](README.md#-contributors)
4. Create a new branch `release/1..X`, remove the `-SNAPHSOT` postfix in `.env`, commit & push
5. Run GitHub `Publish releases` pipeline from the newly created release branch
-6. Update the version number in `.env` for next snapshot on branch `master`, commit & push
+6. Update the version number in `.env` for next snapshot on branch `main`, commit & push
7. Update version number on website
8. Publish the release notes on GitHub (https://github.com/springwolf/springwolf-core/releases)
diff --git a/springwolf-examples/springwolf-amqp-example/src/main/resources/application.properties b/springwolf-examples/springwolf-amqp-example/src/main/resources/application.properties
index 7194e72cd..564aa7c8e 100644
--- a/springwolf-examples/springwolf-amqp-example/src/main/resources/application.properties
+++ b/springwolf-examples/springwolf-amqp-example/src/main/resources/application.properties
@@ -17,7 +17,7 @@ springwolf.enabled=true
springwolf.docket.base-package=io.github.springwolf.examples.amqp
springwolf.docket.info.title=${spring.application.name}
springwolf.docket.info.version=1.0.0
-springwolf.docket.info.description=Springwolf [example project](https://github.com/springwolf/springwolf-core/tree/master/springwolf-examples/springwolf-amqp-example) to demonstrate springwolfs abilities, including **markdown** support for descriptions.
+springwolf.docket.info.description=Springwolf [example project](https://github.com/springwolf/springwolf-core/tree/main/springwolf-examples/springwolf-amqp-example) to demonstrate springwolfs abilities, including **markdown** support for descriptions.
springwolf.docket.info.terms-of-service=http://asyncapi.org/terms
springwolf.docket.info.extension-fields.x-api-audience=company-internal
springwolf.docket.info.extension-fields.x-generator=springwolf
diff --git a/springwolf-examples/springwolf-amqp-example/src/test/resources/asyncapi.json b/springwolf-examples/springwolf-amqp-example/src/test/resources/asyncapi.json
index 0728ae333..6ee66f1eb 100644
--- a/springwolf-examples/springwolf-amqp-example/src/test/resources/asyncapi.json
+++ b/springwolf-examples/springwolf-amqp-example/src/test/resources/asyncapi.json
@@ -3,7 +3,7 @@
"info": {
"title": "Springwolf example project - AMQP",
"version": "1.0.0",
- "description": "Springwolf [example project](https://github.com/springwolf/springwolf-core/tree/master/springwolf-examples/springwolf-amqp-example) to demonstrate springwolfs abilities, including **markdown** support for descriptions.",
+ "description": "Springwolf [example project](https://github.com/springwolf/springwolf-core/tree/main/springwolf-examples/springwolf-amqp-example) to demonstrate springwolfs abilities, including **markdown** support for descriptions.",
"termsOfService": "http://asyncapi.org/terms",
"contact": {
"name": "springwolf",
diff --git a/springwolf-examples/springwolf-amqp-example/src/test/resources/asyncapi.yaml b/springwolf-examples/springwolf-amqp-example/src/test/resources/asyncapi.yaml
index c9e05fa14..e23cb2ef9 100644
--- a/springwolf-examples/springwolf-amqp-example/src/test/resources/asyncapi.yaml
+++ b/springwolf-examples/springwolf-amqp-example/src/test/resources/asyncapi.yaml
@@ -2,7 +2,7 @@ asyncapi: 3.0.0
info:
title: Springwolf example project - AMQP
version: 1.0.0
- description: "Springwolf [example project](https://github.com/springwolf/springwolf-core/tree/master/springwolf-examples/springwolf-amqp-example)\
+ description: "Springwolf [example project](https://github.com/springwolf/springwolf-core/tree/main/springwolf-examples/springwolf-amqp-example)\
\ to demonstrate springwolfs abilities, including **markdown** support for descriptions."
termsOfService: http://asyncapi.org/terms
contact:
diff --git a/springwolf-examples/springwolf-cloud-stream-example/src/main/resources/application.properties b/springwolf-examples/springwolf-cloud-stream-example/src/main/resources/application.properties
index 0ddcf32a0..171a8b74a 100644
--- a/springwolf-examples/springwolf-cloud-stream-example/src/main/resources/application.properties
+++ b/springwolf-examples/springwolf-cloud-stream-example/src/main/resources/application.properties
@@ -38,7 +38,7 @@ springwolf.enabled=true
springwolf.docket.base-package=io.github.springwolf.examples.cloudstream
springwolf.docket.info.title=Springwolf example project - Cloud Stream
springwolf.docket.info.version=1.0.0
-springwolf.docket.info.description=Springwolf [example project](https://github.com/springwolf/springwolf-core/tree/master/springwolf-examples/springwolf-cloud-stream-example) to demonstrate springwolfs abilities, including **markdown** support for descriptions.
+springwolf.docket.info.description=Springwolf [example project](https://github.com/springwolf/springwolf-core/tree/main/springwolf-examples/springwolf-cloud-stream-example) to demonstrate springwolfs abilities, including **markdown** support for descriptions.
springwolf.docket.info.terms-of-service=http://asyncapi.org/terms
springwolf.docket.info.contact.name=springwolf
springwolf.docket.info.contact.email=example@example.com
diff --git a/springwolf-examples/springwolf-cloud-stream-example/src/test/resources/asyncapi.json b/springwolf-examples/springwolf-cloud-stream-example/src/test/resources/asyncapi.json
index 7323395ca..063e6b3bf 100644
--- a/springwolf-examples/springwolf-cloud-stream-example/src/test/resources/asyncapi.json
+++ b/springwolf-examples/springwolf-cloud-stream-example/src/test/resources/asyncapi.json
@@ -3,7 +3,7 @@
"info": {
"title": "Springwolf example project - Cloud Stream",
"version": "1.0.0",
- "description": "Springwolf [example project](https://github.com/springwolf/springwolf-core/tree/master/springwolf-examples/springwolf-cloud-stream-example) to demonstrate springwolfs abilities, including **markdown** support for descriptions.",
+ "description": "Springwolf [example project](https://github.com/springwolf/springwolf-core/tree/main/springwolf-examples/springwolf-cloud-stream-example) to demonstrate springwolfs abilities, including **markdown** support for descriptions.",
"termsOfService": "http://asyncapi.org/terms",
"contact": {
"name": "springwolf",
diff --git a/springwolf-examples/springwolf-jms-example/src/main/resources/application.properties b/springwolf-examples/springwolf-jms-example/src/main/resources/application.properties
index 650813de5..84fc71f52 100644
--- a/springwolf-examples/springwolf-jms-example/src/main/resources/application.properties
+++ b/springwolf-examples/springwolf-jms-example/src/main/resources/application.properties
@@ -16,7 +16,7 @@ springwolf.enabled=true
springwolf.docket.base-package=io.github.springwolf.examples.jms
springwolf.docket.info.title=${spring.application.name}
springwolf.docket.info.version=1.0.0
-springwolf.docket.info.description=Springwolf [example project](https://github.com/springwolf/springwolf-core/tree/master/springwolf-examples/springwolf-jms-example) to demonstrate springwolfs abilities, including **markdown** support for descriptions.
+springwolf.docket.info.description=Springwolf [example project](https://github.com/springwolf/springwolf-core/tree/main/springwolf-examples/springwolf-jms-example) to demonstrate springwolfs abilities, including **markdown** support for descriptions.
springwolf.docket.info.terms-of-service=http://asyncapi.org/terms
springwolf.docket.info.contact.name=springwolf
springwolf.docket.info.contact.email=example@example.com
diff --git a/springwolf-examples/springwolf-jms-example/src/test/resources/asyncapi.json b/springwolf-examples/springwolf-jms-example/src/test/resources/asyncapi.json
index dcfc0f188..184df1f17 100644
--- a/springwolf-examples/springwolf-jms-example/src/test/resources/asyncapi.json
+++ b/springwolf-examples/springwolf-jms-example/src/test/resources/asyncapi.json
@@ -3,7 +3,7 @@
"info": {
"title": "Springwolf example project - JMS",
"version": "1.0.0",
- "description": "Springwolf [example project](https://github.com/springwolf/springwolf-core/tree/master/springwolf-examples/springwolf-jms-example) to demonstrate springwolfs abilities, including **markdown** support for descriptions.",
+ "description": "Springwolf [example project](https://github.com/springwolf/springwolf-core/tree/main/springwolf-examples/springwolf-jms-example) to demonstrate springwolfs abilities, including **markdown** support for descriptions.",
"termsOfService": "http://asyncapi.org/terms",
"contact": {
"name": "springwolf",
diff --git a/springwolf-examples/springwolf-kafka-example/src/main/resources/application.properties b/springwolf-examples/springwolf-kafka-example/src/main/resources/application.properties
index defaca135..8d739193e 100644
--- a/springwolf-examples/springwolf-kafka-example/src/main/resources/application.properties
+++ b/springwolf-examples/springwolf-kafka-example/src/main/resources/application.properties
@@ -32,7 +32,7 @@ springwolf.enabled=true
springwolf.docket.base-package=io.github.springwolf.examples.kafka
springwolf.docket.info.title=${spring.application.name}
springwolf.docket.info.version=1.0.0
-springwolf.docket.info.description=Springwolf [example project](https://github.com/springwolf/springwolf-core/tree/master/springwolf-examples/springwolf-kafka-example) to demonstrate springwolfs abilities, including **markdown** support for descriptions.
+springwolf.docket.info.description=Springwolf [example project](https://github.com/springwolf/springwolf-core/tree/main/springwolf-examples/springwolf-kafka-example) to demonstrate springwolfs abilities, including **markdown** support for descriptions.
springwolf.docket.info.terms-of-service=http://asyncapi.org/terms
springwolf.docket.info.contact.name=springwolf
springwolf.docket.info.contact.email=example@example.com
diff --git a/springwolf-examples/springwolf-kafka-example/src/test/resources/asyncapi.json b/springwolf-examples/springwolf-kafka-example/src/test/resources/asyncapi.json
index 60518b6bb..eb45e62b7 100644
--- a/springwolf-examples/springwolf-kafka-example/src/test/resources/asyncapi.json
+++ b/springwolf-examples/springwolf-kafka-example/src/test/resources/asyncapi.json
@@ -3,7 +3,7 @@
"info": {
"title": "Springwolf example project - Kafka",
"version": "1.0.0",
- "description": "Springwolf [example project](https://github.com/springwolf/springwolf-core/tree/master/springwolf-examples/springwolf-kafka-example) to demonstrate springwolfs abilities, including **markdown** support for descriptions.",
+ "description": "Springwolf [example project](https://github.com/springwolf/springwolf-core/tree/main/springwolf-examples/springwolf-kafka-example) to demonstrate springwolfs abilities, including **markdown** support for descriptions.",
"termsOfService": "http://asyncapi.org/terms",
"contact": {
"name": "springwolf",
diff --git a/springwolf-examples/springwolf-kafka-example/src/test/resources/asyncapi.openapiv31.json b/springwolf-examples/springwolf-kafka-example/src/test/resources/asyncapi.openapiv31.json
index 6e5451b02..8d0922633 100644
--- a/springwolf-examples/springwolf-kafka-example/src/test/resources/asyncapi.openapiv31.json
+++ b/springwolf-examples/springwolf-kafka-example/src/test/resources/asyncapi.openapiv31.json
@@ -3,7 +3,7 @@
"info": {
"title": "Springwolf example project - Kafka",
"version": "1.0.0",
- "description": "Springwolf [example project](https://github.com/springwolf/springwolf-core/tree/master/springwolf-examples/springwolf-kafka-example) to demonstrate springwolfs abilities, including **markdown** support for descriptions.",
+ "description": "Springwolf [example project](https://github.com/springwolf/springwolf-core/tree/main/springwolf-examples/springwolf-kafka-example) to demonstrate springwolfs abilities, including **markdown** support for descriptions.",
"termsOfService": "http://asyncapi.org/terms",
"contact": {
"name": "springwolf",
diff --git a/springwolf-examples/springwolf-kafka-example/src/test/resources/asyncapi.yaml b/springwolf-examples/springwolf-kafka-example/src/test/resources/asyncapi.yaml
index 7af9075df..a7d7a1b7c 100644
--- a/springwolf-examples/springwolf-kafka-example/src/test/resources/asyncapi.yaml
+++ b/springwolf-examples/springwolf-kafka-example/src/test/resources/asyncapi.yaml
@@ -2,7 +2,7 @@ asyncapi: 3.0.0
info:
title: Springwolf example project - Kafka
version: 1.0.0
- description: "Springwolf [example project](https://github.com/springwolf/springwolf-core/tree/master/springwolf-examples/springwolf-kafka-example)\
+ description: "Springwolf [example project](https://github.com/springwolf/springwolf-core/tree/main/springwolf-examples/springwolf-kafka-example)\
\ to demonstrate springwolfs abilities, including **markdown** support for descriptions."
termsOfService: http://asyncapi.org/terms
contact:
diff --git a/springwolf-examples/springwolf-sns-example/src/main/resources/application.properties b/springwolf-examples/springwolf-sns-example/src/main/resources/application.properties
index dd3e0cc53..a05750d31 100644
--- a/springwolf-examples/springwolf-sns-example/src/main/resources/application.properties
+++ b/springwolf-examples/springwolf-sns-example/src/main/resources/application.properties
@@ -19,7 +19,7 @@ springwolf.enabled=true
springwolf.docket.base-package=io.github.springwolf.examples.sns
springwolf.docket.info.title=${spring.application.name}
springwolf.docket.info.version=1.0.0
-springwolf.docket.info.description=Springwolf [example project](https://github.com/springwolf/springwolf-core/tree/master/springwolf-examples/springwolf-sns-example) to demonstrate springwolfs abilities, including **markdown** support for descriptions.
+springwolf.docket.info.description=Springwolf [example project](https://github.com/springwolf/springwolf-core/tree/main/springwolf-examples/springwolf-sns-example) to demonstrate springwolfs abilities, including **markdown** support for descriptions.
springwolf.docket.info.terms-of-service=http://asyncapi.org/terms
springwolf.docket.info.contact.name=springwolf
springwolf.docket.info.contact.email=example@example.com
diff --git a/springwolf-examples/springwolf-sns-example/src/test/resources/asyncapi.json b/springwolf-examples/springwolf-sns-example/src/test/resources/asyncapi.json
index beef7f697..d28c37847 100644
--- a/springwolf-examples/springwolf-sns-example/src/test/resources/asyncapi.json
+++ b/springwolf-examples/springwolf-sns-example/src/test/resources/asyncapi.json
@@ -3,7 +3,7 @@
"info": {
"title": "Springwolf example project - SNS",
"version": "1.0.0",
- "description": "Springwolf [example project](https://github.com/springwolf/springwolf-core/tree/master/springwolf-examples/springwolf-sns-example) to demonstrate springwolfs abilities, including **markdown** support for descriptions.",
+ "description": "Springwolf [example project](https://github.com/springwolf/springwolf-core/tree/main/springwolf-examples/springwolf-sns-example) to demonstrate springwolfs abilities, including **markdown** support for descriptions.",
"termsOfService": "http://asyncapi.org/terms",
"contact": {
"name": "springwolf",
diff --git a/springwolf-examples/springwolf-sqs-example/src/main/resources/application.properties b/springwolf-examples/springwolf-sqs-example/src/main/resources/application.properties
index 7e2c8bae0..79436fb82 100644
--- a/springwolf-examples/springwolf-sqs-example/src/main/resources/application.properties
+++ b/springwolf-examples/springwolf-sqs-example/src/main/resources/application.properties
@@ -19,7 +19,7 @@ springwolf.enabled=true
springwolf.docket.base-package=io.github.springwolf.examples.sqs
springwolf.docket.info.title=${spring.application.name}
springwolf.docket.info.version=1.0.0
-springwolf.docket.info.description=Springwolf [example project](https://github.com/springwolf/springwolf-core/tree/master/springwolf-examples/springwolf-sqs-example) to demonstrate springwolfs abilities, including **markdown** support for descriptions.
+springwolf.docket.info.description=Springwolf [example project](https://github.com/springwolf/springwolf-core/tree/main/springwolf-examples/springwolf-sqs-example) to demonstrate springwolfs abilities, including **markdown** support for descriptions.
springwolf.docket.info.terms-of-service=http://asyncapi.org/terms
springwolf.docket.info.contact.name=springwolf
springwolf.docket.info.contact.email=example@example.com
diff --git a/springwolf-examples/springwolf-sqs-example/src/test/resources/asyncapi.json b/springwolf-examples/springwolf-sqs-example/src/test/resources/asyncapi.json
index 6e0d2396c..6f1a9d533 100644
--- a/springwolf-examples/springwolf-sqs-example/src/test/resources/asyncapi.json
+++ b/springwolf-examples/springwolf-sqs-example/src/test/resources/asyncapi.json
@@ -3,7 +3,7 @@
"info": {
"title": "Springwolf example project - SQS",
"version": "1.0.0",
- "description": "Springwolf [example project](https://github.com/springwolf/springwolf-core/tree/master/springwolf-examples/springwolf-sqs-example) to demonstrate springwolfs abilities, including **markdown** support for descriptions.",
+ "description": "Springwolf [example project](https://github.com/springwolf/springwolf-core/tree/main/springwolf-examples/springwolf-sqs-example) to demonstrate springwolfs abilities, including **markdown** support for descriptions.",
"termsOfService": "http://asyncapi.org/terms",
"contact": {
"name": "springwolf",
diff --git a/springwolf-examples/springwolf-stomp-example/src/main/resources/application.properties b/springwolf-examples/springwolf-stomp-example/src/main/resources/application.properties
index 73814d074..1ec206703 100644
--- a/springwolf-examples/springwolf-stomp-example/src/main/resources/application.properties
+++ b/springwolf-examples/springwolf-stomp-example/src/main/resources/application.properties
@@ -9,7 +9,7 @@ springwolf.enabled=true
springwolf.docket.base-package=io.github.springwolf.examples.stomp
springwolf.docket.info.title=${spring.application.name}
springwolf.docket.info.version=1.0.0
-springwolf.docket.info.description=Springwolf [example project](https://github.com/springwolf/springwolf-core/tree/master/springwolf-examples/springwolf-stomp-example) to demonstrate springwolfs abilities, including **markdown** support for descriptions.
+springwolf.docket.info.description=Springwolf [example project](https://github.com/springwolf/springwolf-core/tree/main/springwolf-examples/springwolf-stomp-example) to demonstrate springwolfs abilities, including **markdown** support for descriptions.
springwolf.docket.info.terms-of-service=http://asyncapi.org/terms
springwolf.docket.info.contact.name=springwolf
springwolf.docket.info.contact.email=example@example.com
diff --git a/springwolf-examples/springwolf-stomp-example/src/test/resources/asyncapi.json b/springwolf-examples/springwolf-stomp-example/src/test/resources/asyncapi.json
index 84726c986..0c8f45f0b 100644
--- a/springwolf-examples/springwolf-stomp-example/src/test/resources/asyncapi.json
+++ b/springwolf-examples/springwolf-stomp-example/src/test/resources/asyncapi.json
@@ -3,7 +3,7 @@
"info": {
"title": "Springwolf example project - STOMP",
"version": "1.0.0",
- "description": "Springwolf [example project](https://github.com/springwolf/springwolf-core/tree/master/springwolf-examples/springwolf-stomp-example) to demonstrate springwolfs abilities, including **markdown** support for descriptions.",
+ "description": "Springwolf [example project](https://github.com/springwolf/springwolf-core/tree/main/springwolf-examples/springwolf-stomp-example) to demonstrate springwolfs abilities, including **markdown** support for descriptions.",
"termsOfService": "http://asyncapi.org/terms",
"contact": {
"name": "springwolf",
diff --git a/springwolf-plugins/springwolf-amqp-plugin/README.md b/springwolf-plugins/springwolf-amqp-plugin/README.md
index c38774bd5..ff02020e8 100644
--- a/springwolf-plugins/springwolf-amqp-plugin/README.md
+++ b/springwolf-plugins/springwolf-amqp-plugin/README.md
@@ -55,5 +55,5 @@ If not, try the following endpoint: `localhost:8080/springwolf/docs`.
### Example Project
-See [springwolf-amqp-example](https://github.com/springwolf/springwolf-core/tree/master/springwolf-examples/springwolf-amqp-example)
+See [springwolf-amqp-example](https://github.com/springwolf/springwolf-core/tree/main/springwolf-examples/springwolf-amqp-example)
.
diff --git a/springwolf-plugins/springwolf-jms-plugin/README.md b/springwolf-plugins/springwolf-jms-plugin/README.md
index 1ba369656..884a3a442 100644
--- a/springwolf-plugins/springwolf-jms-plugin/README.md
+++ b/springwolf-plugins/springwolf-jms-plugin/README.md
@@ -38,5 +38,5 @@ If not, try the following endpoint: `localhost:8080/springwolf/docs`.
### Example Project
-See [springwolf-jms-example](https://github.com/springwolf/springwolf-core/tree/master/springwolf-examples/springwolf-jms-example)
+See [springwolf-jms-example](https://github.com/springwolf/springwolf-core/tree/main/springwolf-examples/springwolf-jms-example)
.
diff --git a/springwolf-plugins/springwolf-kafka-plugin/README.md b/springwolf-plugins/springwolf-kafka-plugin/README.md
index 1f96bbcca..522fc49dd 100644
--- a/springwolf-plugins/springwolf-kafka-plugin/README.md
+++ b/springwolf-plugins/springwolf-kafka-plugin/README.md
@@ -57,4 +57,4 @@ If not, try the following endpoint: `localhost:8080/springwolf/docs`.
### Example Project
-See [springwolf-kafka-example](https://github.com/springwolf/springwolf-core/tree/master/springwolf-examples/springwolf-kafka-example).
+See [springwolf-kafka-example](https://github.com/springwolf/springwolf-core/tree/main/springwolf-examples/springwolf-kafka-example).
diff --git a/springwolf-plugins/springwolf-sns-plugin/README.md b/springwolf-plugins/springwolf-sns-plugin/README.md
index 176f2818b..f21f3ff87 100644
--- a/springwolf-plugins/springwolf-sns-plugin/README.md
+++ b/springwolf-plugins/springwolf-sns-plugin/README.md
@@ -38,5 +38,5 @@ If not, try the following endpoint: `localhost:8080/springwolf/docs`.
### Example Project
-See [springwolf-sns-example](https://github.com/springwolf/springwolf-core/tree/master/springwolf-examples/springwolf-sns-example)
+See [springwolf-sns-example](https://github.com/springwolf/springwolf-core/tree/main/springwolf-examples/springwolf-sns-example)
.
diff --git a/springwolf-plugins/springwolf-sqs-plugin/README.md b/springwolf-plugins/springwolf-sqs-plugin/README.md
index 534a7533c..56cffd764 100644
--- a/springwolf-plugins/springwolf-sqs-plugin/README.md
+++ b/springwolf-plugins/springwolf-sqs-plugin/README.md
@@ -38,5 +38,5 @@ If not, try the following endpoint: `localhost:8080/springwolf/docs`.
### Example Project
-See [springwolf-sqs-example](https://github.com/springwolf/springwolf-core/tree/master/springwolf-examples/springwolf-sqs-example)
+See [springwolf-sqs-example](https://github.com/springwolf/springwolf-core/tree/main/springwolf-examples/springwolf-sqs-example)
.
diff --git a/springwolf-plugins/springwolf-stomp-plugin/README.md b/springwolf-plugins/springwolf-stomp-plugin/README.md
index 8a48e17e2..f842fe988 100644
--- a/springwolf-plugins/springwolf-stomp-plugin/README.md
+++ b/springwolf-plugins/springwolf-stomp-plugin/README.md
@@ -50,4 +50,4 @@ If not, try the following endpoint: `localhost:8080/springwolf/docs`.
### Example Project
-See [springwolf-stomp-example](https://github.com/springwolf/springwolf-core/tree/master/springwolf-examples/springwolf-stomp-example).
+See [springwolf-stomp-example](https://github.com/springwolf/springwolf-core/tree/main/springwolf-examples/springwolf-stomp-example).