<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>info.earty</groupId>
        <artifactId>earty-info-parent</artifactId>
        <version>0.0.2</version>
    </parent>

    <groupId>info.earty</groupId>
    <artifactId>ea-ddd-infrastructure-presentation-misc</artifactId>
    <version>0.0.1</version>

    <name>${project.groupId}:${project.artifactId}</name>
    <description>misc utility and objects meant for use in the infrastructure or presentation layers of a ddd inspired service</description>
    <url>https://earty.info</url>

    <licenses>
        <license>
            <name>The Apache License, Version 2.0</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
        </license>
    </licenses>

    <scm>
        <connection>scm:git:git:bitbucket.org:eartymiuk444/ea-ddd-infrastructure-presentation-misc.git</connection>
        <developerConnection>scm:git:ssh://bitbucket.org:eartymiuk444/ea-ddd-infrastructure-presentation-misc.git</developerConnection>
        <url>https://bitbucket.org/eartymiuk444/ddd-common/src</url>
    </scm>

    <developers>
        <developer>
            <name>Erik Artymiuk</name>
            <email>eartymiuk@gmail.com</email>
            <organization>individual</organization>
            <organizationUrl>https//earty.info</organizationUrl>
        </developer>
    </developers>

    <properties>
        <lombok.version>1.18.26</lombok.version>
        <cxf.version>4.0.0</cxf.version>
        <spring.boot.version>3.0.2</spring.boot.version>
    </properties>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-dependencies</artifactId>
                <version>${spring.boot.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <dependencies>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <version>${lombok.version}</version>
            <scope>provided</scope>
        </dependency>

        <!-- infrastructure -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-core</artifactId>
        </dependency>

        <!-- presentation -->
        <dependency>
            <groupId>org.apache.cxf</groupId>
            <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
            <version>${cxf.version}</version>
        </dependency>

        <!-- Test Dependencies -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <version>${spring.boot.version}</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

</project>