Add-ons for Axon Framework provides a set of libraries extending the framework with useful tools.
- axon-jgiven: an add-on fostering the usage of JGiven Test framework for writing Axon Aggregate and Axon Saga Fixture-based tests.
We are distributing the artifact using Bintray JCenter. In order to use it, you have to add the repository.
Add the repository to your pom.
<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>jcenter</id>
<name>bintray</name>
<url>https://jcenter.bintray.com</url>
</repository>
</repositories>
and just use the library:
<dependency>
<groupId>io.toolisticon.addons.axon</groupId>
<artifactId>axon-jgiven</artifactId>
<version>0.1.1</version>
<scope>test</scope>
</dependency>