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) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-amqp?color=green&label=springwolf-amqp&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-amqp%2Fmaven-metadata.xml&label=springwolf-amqp&style=plastic) | -| [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) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-sns?color=green&label=springwolf-sns&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-sns%2Fmaven-metadata.xml&label=springwolf-sns&style=plastic) | -| [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) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-sqs?color=green&label=springwolf-sqs&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-sqs%2Fmaven-metadata.xml&label=springwolf-sqs&style=plastic) | -| [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) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-cloud-stream?color=green&label=springwolf-cloud-stream&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-cloud-stream%2Fmaven-metadata.xml&label=springwolf-cloud-stream&style=plastic) | -| [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) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-jms?color=green&label=springwolf-jms&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-jms%2Fmaven-metadata.xml&label=springwolf-jms&style=plastic) | -| [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) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-kafka?color=green&label=springwolf-kafka&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-kafka%2Fmaven-metadata.xml&label=springwolf-kafka&style=plastic) | -| [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) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-stomp?color=green&label=springwolf-stomp&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-stomp%2Fmaven-metadata.xml&label=springwolf-stomp&style=plastic) | +| [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) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-amqp?color=green&label=springwolf-amqp&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-amqp%2Fmaven-metadata.xml&label=springwolf-amqp&style=plastic) | +| [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) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-sns?color=green&label=springwolf-sns&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-sns%2Fmaven-metadata.xml&label=springwolf-sns&style=plastic) | +| [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) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-sqs?color=green&label=springwolf-sqs&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-sqs%2Fmaven-metadata.xml&label=springwolf-sqs&style=plastic) | +| [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) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-cloud-stream?color=green&label=springwolf-cloud-stream&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-cloud-stream%2Fmaven-metadata.xml&label=springwolf-cloud-stream&style=plastic) | +| [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) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-jms?color=green&label=springwolf-jms&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-jms%2Fmaven-metadata.xml&label=springwolf-jms&style=plastic) | +| [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) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-kafka?color=green&label=springwolf-kafka&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-kafka%2Fmaven-metadata.xml&label=springwolf-kafka&style=plastic) | +| [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) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-stomp?color=green&label=springwolf-stomp&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-stomp%2Fmaven-metadata.xml&label=springwolf-stomp&style=plastic) |
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) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-asyncapi?color=green&label=springwolf-asyncapi&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-asyncapi%2Fmaven-metadata.xml&label=springwolf-asyncapi&style=plastic) | -| [Core](https://github.com/springwolf/springwolf-core/tree/master/springwolf-core) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-core?color=green&label=springwolf-core&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-core%2Fmaven-metadata.xml&label=springwolf-core&style=plastic) | -| [UI](https://github.com/springwolf/springwolf-core/tree/master/springwolf-ui) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-ui?color=green&label=springwolf-ui&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-ui%2Fmaven-metadata.xml&label=springwolf-ui&style=plastic) | +| [AsyncAPI implementation](https://github.com/springwolf/springwolf-core/tree/main/springwolf-asyncapi) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-asyncapi?color=green&label=springwolf-asyncapi&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-asyncapi%2Fmaven-metadata.xml&label=springwolf-asyncapi&style=plastic) | +| [Core](https://github.com/springwolf/springwolf-core/tree/main/springwolf-core) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-core?color=green&label=springwolf-core&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-core%2Fmaven-metadata.xml&label=springwolf-core&style=plastic) | +| [UI](https://github.com/springwolf/springwolf-core/tree/main/springwolf-ui) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-ui?color=green&label=springwolf-ui&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-ui%2Fmaven-metadata.xml&label=springwolf-ui&style=plastic) | | Bindings | Current version | SNAPSHOT version | |----------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| [AMQP Binding](https://github.com/springwolf/springwolf-core/tree/master/springwolf-bindings/springwolf-amqp-binding) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-amqp-binding?color=green&label=springwolf-amqp-binding&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-amqp-binding%2Fmaven-metadata.xml&label=springwolf-amqp-binding&style=plastic) | -| [AWS SNS Binding](https://github.com/springwolf/springwolf-core/tree/master/springwolf-bindings/springwolf-sns-binding) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-sns-binding?color=green&label=springwolf-sns-binding&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-sns-binding%2Fmaven-metadata.xml&label=springwolf-sns-binding&style=plastic) | -| [AWS SQS Binding](https://github.com/springwolf/springwolf-core/tree/master/springwolf-bindings/springwolf-sqs-binding) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-sqs-binding?color=green&label=springwolf-sqs-binding&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-sqs-binding%2Fmaven-metadata.xml&label=springwolf-sqs-binding&style=plastic) | -| [Google PubSub Binding](https://github.com/springwolf/springwolf-core/tree/master/springwolf-bindings/springwolf-googlepubsub-binding) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-googlepubsub-binding?color=green&label=springwolf-googlepubsub-binding&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-googlepubsub-binding%2Fmaven-metadata.xml&label=springwolf-googlepubsub-binding&style=plastic) | -| [JMS Binding](https://github.com/springwolf/springwolf-core/tree/master/springwolf-bindings/springwolf-jms-binding) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-jms-binding?color=green&label=springwolf-jms-binding&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-jms-binding%2Fmaven-metadata.xml&label=springwolf-jms-binding&style=plastic) | -| [Kafka Binding](https://github.com/springwolf/springwolf-core/tree/master/springwolf-bindings/springwolf-kafka-binding) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-kafka-binding?color=green&label=springwolf-kafka-binding&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-kafka-binding%2Fmaven-metadata.xml&label=springwolf-kafka-binding&style=plastic) | -| [STOMP Binding](https://github.com/springwolf/springwolf-core/tree/master/springwolf-bindings/springwolf-stomp-binding) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-stomp-binding?color=green&label=springwolf-stomp-binding&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-stomp-binding%2Fmaven-metadata.xml&label=springwolf-stomp-binding&style=plastic) | +| [AMQP Binding](https://github.com/springwolf/springwolf-core/tree/main/springwolf-bindings/springwolf-amqp-binding) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-amqp-binding?color=green&label=springwolf-amqp-binding&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-amqp-binding%2Fmaven-metadata.xml&label=springwolf-amqp-binding&style=plastic) | +| [AWS SNS Binding](https://github.com/springwolf/springwolf-core/tree/main/springwolf-bindings/springwolf-sns-binding) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-sns-binding?color=green&label=springwolf-sns-binding&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-sns-binding%2Fmaven-metadata.xml&label=springwolf-sns-binding&style=plastic) | +| [AWS SQS Binding](https://github.com/springwolf/springwolf-core/tree/main/springwolf-bindings/springwolf-sqs-binding) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-sqs-binding?color=green&label=springwolf-sqs-binding&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-sqs-binding%2Fmaven-metadata.xml&label=springwolf-sqs-binding&style=plastic) | +| [Google PubSub Binding](https://github.com/springwolf/springwolf-core/tree/main/springwolf-bindings/springwolf-googlepubsub-binding) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-googlepubsub-binding?color=green&label=springwolf-googlepubsub-binding&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-googlepubsub-binding%2Fmaven-metadata.xml&label=springwolf-googlepubsub-binding&style=plastic) | +| [JMS Binding](https://github.com/springwolf/springwolf-core/tree/main/springwolf-bindings/springwolf-jms-binding) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-jms-binding?color=green&label=springwolf-jms-binding&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-jms-binding%2Fmaven-metadata.xml&label=springwolf-jms-binding&style=plastic) | +| [Kafka Binding](https://github.com/springwolf/springwolf-core/tree/main/springwolf-bindings/springwolf-kafka-binding) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-kafka-binding?color=green&label=springwolf-kafka-binding&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-kafka-binding%2Fmaven-metadata.xml&label=springwolf-kafka-binding&style=plastic) | +| [STOMP Binding](https://github.com/springwolf/springwolf-core/tree/main/springwolf-bindings/springwolf-stomp-binding) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-stomp-binding?color=green&label=springwolf-stomp-binding&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-stomp-binding%2Fmaven-metadata.xml&label=springwolf-stomp-binding&style=plastic) | | Add-on | Current version | SNAPSHOT version | |------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| [Common Model Converter](https://github.com/springwolf/springwolf-core/tree/master/springwolf-add-ons/springwolf-common-model-converters) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-common-model-converters?color=green&label=springwolf-common-model-converters&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-common-model-converters%2Fmaven-metadata.xml&label=springwolf-common-model-converters&style=plastic) | -| [Generic Binding](https://github.com/springwolf/springwolf-core/tree/master/springwolf-add-ons/springwolf-generic-binding) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-generic-binding?color=green&label=springwolf-generic-binding&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-generic-binding%2Fmaven-metadata.xml&label=springwolf-generic-binding&style=plastic) | -| [Json Schema](https://github.com/springwolf/springwolf-core/tree/master/springwolf-add-ons/springwolf-json-schema) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-json-schema?color=green&label=springwolf-json-schema&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-json-schema%2Fmaven-metadata.xml&label=springwolf-json-schema&style=plastic) | -| [Kotlinx Serialization Model Converter](https://github.com/springwolf/springwolf-core/tree/master/springwolf-add-ons/springwolf-kotlinx-serialization-model-converter) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-kotlinx-serialization-model-converter?color=green&label=springwolf-kotlinx-serialization-model-converter&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-kotlinx-serialization-model-converter%2Fmaven-metadata.xml&label=springwolf-kotlinx-serialization-model-converter&style=plastic) | +| [Common Model Converter](https://github.com/springwolf/springwolf-core/tree/main/springwolf-add-ons/springwolf-common-model-converters) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-common-model-converters?color=green&label=springwolf-common-model-converters&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-common-model-converters%2Fmaven-metadata.xml&label=springwolf-common-model-converters&style=plastic) | +| [Generic Binding](https://github.com/springwolf/springwolf-core/tree/main/springwolf-add-ons/springwolf-generic-binding) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-generic-binding?color=green&label=springwolf-generic-binding&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-generic-binding%2Fmaven-metadata.xml&label=springwolf-generic-binding&style=plastic) | +| [Json Schema](https://github.com/springwolf/springwolf-core/tree/main/springwolf-add-ons/springwolf-json-schema) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-json-schema?color=green&label=springwolf-json-schema&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-json-schema%2Fmaven-metadata.xml&label=springwolf-json-schema&style=plastic) | +| [Kotlinx Serialization Model Converter](https://github.com/springwolf/springwolf-core/tree/main/springwolf-add-ons/springwolf-kotlinx-serialization-model-converter) | ![Maven Central](https://img.shields.io/maven-central/v/io.github.springwolf/springwolf-kotlinx-serialization-model-converter?color=green&label=springwolf-kotlinx-serialization-model-converter&style=plastic) | ![Sonatype Nexus (Snapshots)](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Fcentral.sonatype.com%2Frepository%2Fmaven-snapshots%2Fio%2Fgithub%2Fspringwolf%2Fspringwolf-kotlinx-serialization-model-converter%2Fmaven-metadata.xml&label=springwolf-kotlinx-serialization-model-converter&style=plastic) |
### 🚀 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).