Skip to content
This repository has been archived by the owner on Jan 15, 2025. It is now read-only.

Latest commit

 

History

History
37 lines (27 loc) · 1.21 KB

README.md

File metadata and controls

37 lines (27 loc) · 1.21 KB

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