axoniq-dead-letter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.axoniq.framework</groupId>
<artifactId>axoniq-dead-letter</artifactId>
<version>5.1.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2010-2026. AxonIQ B.V.
~
~ Licensed under the AXONIQ TERMS OF SERVICE,
~ Version 29 April 2026 (the "License");
~
~ The software is available for evaluation use without registration.
~ Continued use beyond the evaluation period requires registration
~ and a commercial license. See the License for the specific language
~ governing permissions and limitations under the License.
~ You may not use this file except in compliance with the License.
~
~ You may obtain a copy of the License at:
~ https://www.axoniq.io/legal/terms-of-service
~
~ For licensing information and to register, visit:
~ https://www.axoniq.io/pricing
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.axoniq.framework</groupId>
<artifactId>axoniq-framework-parent</artifactId>
<version>5.1.0</version>
<relativePath>../../build/parent/pom.xml</relativePath>
</parent>
<artifactId>axoniq-dead-letter</artifactId>
<name>Axoniq Framework - Dead Letter</name>
<description>
Module providing Sequenced Dead-Letter Queue (DLQ) support for event handling components,
including in-memory, JDBC, and JPA-backed implementations.
</description>
<dependencies>
<!-- Axoniq Entitlement -->
<dependency>
<groupId>io.axoniq.license</groupId>
<artifactId>entitlement-manager</artifactId>
</dependency>
<!-- Core Axon Framework -->
<dependency>
<groupId>org.axonframework</groupId>
<artifactId>axon-messaging</artifactId>
</dependency>
<!-- Persistence (optional) -->
<dependency>
<groupId>jakarta.persistence</groupId>
<artifactId>jakarta.persistence-api</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.hibernate.orm</groupId>
<artifactId>hibernate-core</artifactId>
<optional>true</optional>
</dependency>
<!-- Testing -->
<dependency>
<groupId>org.axonframework</groupId>
<artifactId>axon-common</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.axonframework</groupId>
<artifactId>axon-messaging</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.axonframework</groupId>
<artifactId>axon-conversion</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<scope>test</scope>
</dependency>
<!-- Spring - used for testing only! -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>io.axoniq.framework.deadletter</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>