<?xml version="1.0" encoding="utf-8"?>
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>dev.aydin.enterprise</groupId>
        <artifactId>master-17</artifactId>
        <version>1.0.0</version>
    </parent>
    <artifactId>error-handling</artifactId>
    <name>error-handling</name>
    <description>Runnable Enterprise Demo Modul mit klarer Aufgabe und Pattern-Hinweisen.</description>
    <dependencies>
        <dependency>
            <groupId>dev.aydin.enterprise</groupId>
            <artifactId>event-contracts</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter</artifactId>
            <version>5.11.4</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>3.5.2</version>
            </plugin>
        </plugins>
    </build>
</project>
