Skip to content
This repository has been archived by the owner on Jan 15, 2025. It is now read-only.
/ axon-framework-bom Public archive

Bill of Material for axon-framework libs

License

Notifications You must be signed in to change notification settings

holixon/axon-framework-bom

Repository files navigation

axon-framework-bom

Bill of Material for axon-framework libs

stable Build Status sponsored Maven Central

Usage

Include this bom in your dependencyManagement section to get all framework libs in the correct matching version without explicitly mentioning them in your dependencies declarations.

Maven:

<dependency>
  <groupId>io.holixon.axon</groupId>
  <artifactId>axon-framework-bom</artifactId>
  <version>4.5.14</version>
  <type>pom</type>
  <scope>import</scope>
</dependency>

Gradle:

dependencies {
  implementation(platform("io.holixon.axon:axon-framework-bom:4.5.14"))
}

Notes