<?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>

    <groupId>io.github.uedsonreis</groupId>
    <artifactId>lib-ws-crud</artifactId>
    <version>1.0.001</version>
    <name>Lib Web Service CRUD</name>
    <packaging>pom</packaging>
    <url>https://github.com/uedsonreis/lib-ws-crud</url>
    <description>Lib project for building a Restful Web Services in Spring Boot</description>

    <modules>
        <module>lib-ws-api</module>
        <module>lib-ws-test</module>
        <module>lib-ws-parent</module>
    </modules>

    <build>
        <plugins>
            <plugin>
                <groupId>org.sonatype.plugins</groupId>
                <artifactId>nexus-staging-maven-plugin</artifactId>
                <version>1.6.13</version>
                <extensions>true</extensions>
                <configuration>
                    <serverId>ossrh</serverId>
                    <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
                    <autoReleaseAfterClose>true</autoReleaseAfterClose>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-gpg-plugin</artifactId>
                <version>1.6</version>
                <executions>
                    <execution>
                        <id>sign-artifacts</id>
                        <phase>verify</phase>
                        <goals>
                            <goal>sign</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

    <developers>
        <developer>
            <id>uedsonreis</id>
            <name>Uedson Reis</name>
            <email>uedsonreis@gmail.com</email>
            <organization>com.github.uedsonreis</organization>
            <organizationUrl>https://github.com/uedsonreis</organizationUrl>
        </developer>
    </developers>

    <licenses>
        <license>
            <name>MIT License</name>
            <url>http://www.opensource.org/licenses/mit-license.php</url>
        </license>
    </licenses>

    <scm>
        <connection>scm:git:git://github.com/uedsonreis/lib-ws-crud.git</connection>
        <developerConnection>scm:git:ssh://github.com:uedsonreis/lib-ws-crud.git</developerConnection>
        <url>https://github.com/uedsonreis/lib-ws-crud</url>
    </scm>

    <distributionManagement>
        <snapshotRepository>
            <id>ossrh</id>
            <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
        </snapshotRepository>
        <repository>
            <id>ossrh</id>
            <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
        </repository>
    </distributionManagement>

</project>
