Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
6991c07
Migrate core multitenancy components to Axon Framework 5
theoema Jan 1, 2026
a12bc86
Migrate MultiTenantQueryBus to Axon Framework 5
theoema Jan 1, 2026
9780463
Migrate MultiTenantEventStore to Axon Framework 5
theoema Jan 1, 2026
f4d2272
Migrate MultiTenantEventProcessor to Axon Framework 5
theoema Jan 1, 2026
6c0a2d2
Add MultiTenantEventProcessorPredicate for configuration
theoema Jan 1, 2026
e487f29
Add comprehensive AF5 migration guide documentation
theoema Jan 1, 2026
fb78cb6
Restructure packages to align with AF5 messaging architecture
theoema Jan 2, 2026
caff485
Add configuration module for AF5 decorator pattern
theoema Jan 2, 2026
6f9bc02
Add interception integration tests for multi-tenant buses
theoema Jan 2, 2026
1b3757f
Remove tests for components pending AF5 migration
theoema Jan 2, 2026
1398f17
Add core tenant infrastructure for Axon Framework 5 multitenancy
theoema Jan 5, 2026
7151c0f
Add tenant component system for dependency injection in handlers
theoema Jan 5, 2026
34511c3
Add multi-tenant command and query bus infrastructure
theoema Jan 5, 2026
7a9218f
Add multi-tenant event store for isolated event sourcing
theoema Jan 5, 2026
b8ef858
Add multi-tenant event processing with pooled streaming support
theoema Jan 5, 2026
afbb561
Add multi-tenancy configuration API and auto-discovery defaults
theoema Jan 5, 2026
a6f680f
Add Axon Server connector for distributed multi-tenancy
theoema Jan 5, 2026
c91df51
Add Spring Data JPA support for tenant-scoped repositories
theoema Jan 5, 2026
a258cff
Add Spring Boot autoconfiguration for multi-tenancy extension
theoema Jan 5, 2026
4ee204c
Add integration tests for multi-tenancy extension
theoema Jan 5, 2026
fcf1563
Add unit tests for multi-tenancy core and infrastructure
theoema Jan 5, 2026
494cad3
Add SPI registration and Axon Server connector tests
theoema Jan 5, 2026
fdd2c7a
Remove v4 code and migration artifacts
theoema Jan 5, 2026
c00ad27
Update build configuration for Axon Framework 5
theoema Jan 5, 2026
9f6a32a
Rename packages from extensions to extension for consistency
theoema Jan 5, 2026
fa0a24e
Add comprehensive documentation for Axon Framework 5
theoema Jan 5, 2026
5ea9308
Fix package names in service and config files
theoema Jan 5, 2026
d132365
Add integration test for CommandDispatcher tenant propagation
theoema Jan 5, 2026
e0ee6fe
Add JDBC and R2DBC tenant-scoped data access support
theoema Jan 8, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions coverage-report/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<artifactId>axon-multitenancy-parent</artifactId>
<groupId>org.axonframework.extensions.multitenancy</groupId>
<version>4.12.1-SNAPSHOT</version>
<version>5.1.0-SNAPSHOT</version>
</parent>

<artifactId>axon-coverage-report</artifactId>
Expand All @@ -38,13 +38,19 @@
</dependency>
<dependency>
<groupId>org.axonframework.extensions.multitenancy</groupId>
<artifactId>axon-multitenancy-spring-boot-autoconfigure</artifactId>
<artifactId>axon-multitenancy-spring</artifactId>
<version>${project.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.axonframework.extensions.multitenancy</groupId>
<artifactId>axon-multitenancy-spring-boot-3-integrationtests</artifactId>
<artifactId>axon-multitenancy-axon-server-connector</artifactId>
<version>${project.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.axonframework.extensions.multitenancy</groupId>
<artifactId>axon-multitenancy-spring-boot-autoconfigure</artifactId>
<version>${project.version}</version>
<scope>runtime</scope>
</dependency>
Expand Down
276 changes: 0 additions & 276 deletions docs/reference/modules/ROOT/pages/configuration.adoc

This file was deleted.

Loading