Skip to content

Commit 625a1ff

Browse files
Merge branch 'master' into bug/support-reset-context
2 parents 236c7e2 + 3513b75 commit 625a1ff

File tree

21 files changed

+112
-79
lines changed

21 files changed

+112
-79
lines changed

.github/dependabot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ updates:
1010
labels:
1111
- "Type: Dependency Upgrade"
1212
- "Priority 1: Must"
13-
milestone: 7
13+
milestone: 8
1414
reviewers:
1515
- "AxonFramework/framework-developers"
1616
- "sandjelkovic"
@@ -30,7 +30,7 @@ updates:
3030
labels:
3131
- "Type: Dependency Upgrade"
3232
- "Priority 1: Must"
33-
milestone: 7
33+
milestone: 8
3434
reviewers:
3535
- "AxonFramework/framework-developers"
3636
- "sandjelkovic"

.github/workflows/dependabot-automation.yml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,19 @@ jobs:
2424
PR_URL: ${{github.event.pull_request.html_url}}
2525
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
2626

27-
dependabot-auto-merge:
28-
runs-on: ubuntu-latest
29-
if: ${{ github.actor == 'dependabot[bot]' }}
30-
steps:
31-
- name: Retrieve Dependabot metadata
32-
id: metadata
33-
uses: dependabot/fetch-metadata@v2
34-
with:
35-
github-token: "${{ secrets.GITHUB_TOKEN }}"
36-
37-
- name: Auto-merge Pull Request
38-
if: ${{steps.metadata.outputs.update-type != 'version-update:semver-major'}}
39-
run: gh pr merge --auto --merge "$PR_URL"
40-
env:
41-
PR_URL: ${{github.event.pull_request.html_url}}
42-
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
27+
# dependabot-auto-merge:
28+
# runs-on: ubuntu-latest
29+
# if: ${{ github.actor == 'dependabot[bot]' }}
30+
# steps:
31+
# - name: Retrieve Dependabot metadata
32+
# id: metadata
33+
# uses: dependabot/fetch-metadata@v2
34+
# with:
35+
# github-token: "${{ secrets.GITHUB_TOKEN }}"
36+
#
37+
# - name: Auto-merge Pull Request
38+
# if: ${{steps.metadata.outputs.update-type != 'version-update:semver-major'}}
39+
# run: gh pr merge --auto --merge "$PR_URL"
40+
# env:
41+
# PR_URL: ${{github.event.pull_request.html_url}}
42+
# GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
uses: actions/checkout@v4
3131

3232
- name: Set up JDK ${{ matrix.java-version }}
33-
uses: actions/setup-java@v4.2.1
33+
uses: actions/setup-java@v4.6.0
3434
with:
3535
distribution: 'zulu'
3636
java-version: ${{ matrix.java-version }}
@@ -73,7 +73,7 @@ jobs:
7373
if: success()
7474
env:
7575
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
76-
uses: voxmedia/github-action-slack-notify-build@v1.6.0
76+
uses: voxmedia/github-action-slack-notify-build@v2
7777
with:
7878
channel_id: CAGSEC92A
7979
status: SUCCESS
@@ -83,7 +83,7 @@ jobs:
8383
if: failure()
8484
env:
8585
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
86-
uses: voxmedia/github-action-slack-notify-build@v1.6.0
86+
uses: voxmedia/github-action-slack-notify-build@v2
8787
with:
8888
channel_id: CAGSEC92A
8989
status: FAILED

.github/workflows/pullrequest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
uses: actions/checkout@v4
2424

2525
- name: Set up JDK ${{ matrix.java-version }}
26-
uses: actions/setup-java@v4.2.1
26+
uses: actions/setup-java@v4.6.0
2727
with:
2828
distribution: 'zulu'
2929
java-version: ${{ matrix.java-version }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Are you having trouble using the extension?
6767
We'd like to help you out the best we can!
6868
There are a couple of things to consider when you're traversing anything Axon:
6969

70-
* Checking the [reference guide](https://library.axoniq.io/axon_framework_ref/) should be your first stop,
70+
* Checking the [reference guide](https://library.axoniq.io/axon-framework-reference/) should be your first stop,
7171
as the majority of possible scenarios you might encounter when using Axon should be covered there.
7272
* If the Reference Guide does not cover a specific topic you would've expected,
7373
we'd appreciate if you could post a [new thread/topic on our library fourms describing the problem](https://discuss.axoniq.io/c/26).

coverage-report/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
3-
~ Copyright (c) 2010-2023. Axon Framework
3+
~ Copyright (c) 2010-2024. Axon Framework
44
~
55
~ Licensed under the Apache License, Version 2.0 (the "License");
66
~ you may not use this file except in compliance with the License.
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>org.axonframework.extensions.kotlin</groupId>
2323
<artifactId>axon-kotlin-parent</artifactId>
24-
<version>4.9.1-SNAPSHOT</version>
24+
<version>4.11.0-SNAPSHOT</version>
2525
</parent>
2626

2727
<artifactId>axon-coverage-report</artifactId>

docs/README.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Documentation For Axon Framework - Kotlin Extension.
2+
3+
This folder contains the docs related to the Kotlin Extension for Axon Framework. The docs in this folder are written as part of the [AxonIQ Library](https://library.axoniq.io), and are [written in Ascii and built with Antora.](https://library.axoniq.io/contibution-guide/overview/platform.html)
4+
5+
The following are the current documentation sources (folders):
6+
7+
- `extension-guide` : [The Kotlin Extension Guide](https://library.axoniq.io/kotlin-extension-reference/index.html)
8+
9+
## Contributing to the docs.
10+
11+
You are welcome to contribute to these docs. Whether you want to fix a typo, or you find something missing, something that is not clear or can be improved, or even if you want to write an entire piece of docs to illustrate something that could help others to understand the use of the Bike Rental App, you are more than welcome to send a Pull Request to this GitHub repository. Just make sure you follow the guidelines explained in [AxonIQ Library Contribution Guide](https://library.axoniq.io/contibution-guide/index.html)
12+
13+
## Building and testing these docs locally.
14+
15+
If you want to build and explore the docs locally (because you have made changes or before contributing), you can use the Antora's build file in `docs/_playbook` folder.
16+
17+
You can check the [detailed information on how the process to build the docs works](https://library.axoniq.io/contibution-guide/overview/build.html), but in short, all you have to do is:
18+
19+
1. Make sure you have Node (a LTS version is preferred), Antora and Vale installed in your system.
20+
2. CD to the `docs/_playbook` folder.
21+
3. Run `npx antora playbook.yaml`. Antora will generate the set of static html files under `docs/_playbook/build/site`
22+
4. Move to `docs/_playbook/build/site` and execute some local http server to serve files in that directory. For example by executing `python3 -m http.server 8070`
23+
5. Open your browser and go to `http://localhost:8070`. You should be able to navigate the local version of the docs.

docs/_playbook/playbook.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
site:
22
title: Kotlin Extension docs PREVIEW
3-
start_page: kotlin_extension_guide::index.adoc
3+
start_page: kotlin-extension-reference::index.adoc
44

55
content:
66
sources:

docs/extension-guide/antora.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

docs/extension-guide/modules/nav.adoc

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)