<?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>tech.pasaperez</groupId>
        <artifactId>arcano</artifactId>
        <version>1.0.0</version>
    </parent>
    <artifactId>backend</artifactId>
    <name>Modulo Backend</name>
    <description>Modulo Backend</description>
    <version>1.0.0</version>
    <packaging>pom</packaging>
    <url>https://github.com/pasaperez/arcano</url>
    <licenses>
        <license>
            <name>Private and Restricted License</name>
            <url>https://github.com/pasaperez/arcano/blob/master/LICENSE</url>
            <distribution>manual</distribution>
            <comments>
                This software is private and restricted. Use, distribution, and modification are strictly prohibited
                without explicit authorization from Angel Santiago Perez.
            </comments>
        </license>
    </licenses>
    <developers>
        <developer>
            <id>pasaperez</id>
            <name>Angel Santiago Perez</name>
            <email>pasaperez@yahoo.com.ar</email>
            <roles>
                <role>owner</role>
                <role>developer</role>
            </roles>
            <organization>Pasaperez</organization>
            <organizationUrl>https://github.com/pasaperez</organizationUrl>
        </developer>
    </developers>
    <scm>
        <connection>scm:git:https://github.com/pasaperez/arcano.git</connection>
        <developerConnection>scm:git:ssh://git@github.com/pasaperez/arcano.git</developerConnection>
        <tag>HEAD</tag>
        <url>https://github.com/pasaperez/arcano</url>
    </scm>
    <dependencies>
        <!--Spring Boot Web-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <!--Spring Boot Data JPA Starter-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-jpa</artifactId>
        </dependency>
        <!--Spring Boot Data Rest-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-rest</artifactId>
            <exclusions>
                <exclusion>
                    <groupId>com.jayway.jsonpath</groupId>
                    <artifactId>json-path</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <!-- Jayway Jsonpath -->
        <dependency>
            <groupId>com.jayway.jsonpath</groupId>
            <artifactId>json-path</artifactId>
        </dependency>
        <!--Spring Boot Data JPA-->
        <dependency>
            <groupId>org.springframework.data</groupId>
            <artifactId>spring-data-jpa</artifactId>
        </dependency>
        <!--Spring Boot Configuration Processor-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-configuration-processor</artifactId>
            <optional>true</optional>
        </dependency>
        <!--Jakarta-->
        <dependency>
            <groupId>jakarta.persistence</groupId>
            <artifactId>jakarta.persistence-api</artifactId>
        </dependency>
        <!--Lombok-->
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <optional>true</optional>
        </dependency>
        <!--Only for test-->
        <!--Spring Boot Test-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
            <exclusions>
                <exclusion>
                    <groupId>com.jayway.jsonpath</groupId>
                    <artifactId>json-path</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>com.vaadin.external.google</groupId>
                    <artifactId>android-json</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <!--Springdoc-->
        <dependency>
            <groupId>org.springdoc</groupId>
            <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
        </dependency>
    </dependencies>
    <distributionManagement>
        <repository>
            <id>central</id>
            <url>https://central.sonatype.com/repository/maven-releases/</url>
        </repository>
        <snapshotRepository>
            <id>central</id>
            <url>https://central.sonatype.com/repository/maven-snapshots/</url>
        </snapshotRepository>
    </distributionManagement>
    <build>
        <plugins>
            <!--Maven Compiler Plugin-->
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
    <modules>
        <module>elixir</module>
        <module>impetu</module>
    </modules>
</project>