<?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>

    <packaging>jar</packaging>
    <artifactId>sd-shared-web-db-mongo</artifactId>
    <version>1.2.2</version>

    <licenses>
        <license>
            <name>The Apache License, Version 2.0</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
        </license>
    </licenses>
    <developers>
        <developer>
            <name>Dennis Oleshko</name>
            <email>dennis.oleshko@gmail.com</email>
            <organization>Dennis.systems</organization>
            <organizationUrl>https://gitlab.com/systems.dennis/shared</organizationUrl>
        </developer>
    </developers>
    <scm>
        <connection>https://gitlab.com/systems.dennis/shared.git</connection>
        <developerConnection>scm:git:ssh://gitlab.com/systems.dennis/shared.git</developerConnection>
        <url>http://systems.dennis/shared/tree/main</url>
    </scm>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>11</source>
                    <target>11</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
    <properties>
        <maven.compiler.source>1.10</maven.compiler.source>
        <maven.compiler.target>1.10</maven.compiler.target>
        <shared.version>3.5.8</shared.version>
        <parent.version>1.1.5</parent.version>
    </properties>
    <parent>
        <groupId>systems.dennis</groupId>
        <artifactId>sd-parent</artifactId>
        <version>1.1.5</version>
    </parent>

    <dependencies>
        <!-- to enable hot swapping, disable cache for template and enable live reload -->
        <dependency>
            <groupId>systems.dennis</groupId>
            <artifactId>sd-shared-web</artifactId>
            <version>${shared.version}</version>

        </dependency>

        <dependency>
            <groupId>com.fasterxml.jackson.dataformat</groupId>
            <artifactId>jackson-dataformat-yaml</artifactId>
            <version>2.14.2</version>
        </dependency>
        <!-- https://mvnrepository.com/artifact/org.mongodb/mongo-java-driver -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-mongodb</artifactId>
        </dependency>
        <dependency>
            <groupId>jakarta.persistence</groupId>
            <artifactId>jakarta.persistence-api</artifactId>
        </dependency>

    </dependencies>


</project>
