<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.abavilla</groupId>
  <artifactId>fpi-framework</artifactId>
  <version>1.0.136-1-608f58b5</version>
  <packaging>pom</packaging>
  <name>FPI Framework</name>
  <description>Reactive API backend Framework, built on top of Quarkus, for quick and easy REST API development</description>
  <url>https://github.com/vincejv/fpi-framework</url>
  <licenses>
    <license>
      <name>The GNU General Public License v3.0</name>
      <url>https://www.gnu.org/licenses/gpl-3.0.txt</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <name>Vince Jerald Villamora</name>
      <email>vincevillamora@gmail.com</email>
      <organization>Abavilla</organization>
      <organizationUrl>https://github.com/vincejv</organizationUrl>
    </developer>
  </developers>
  <modules>
    <module>fpi-framework-bom</module>
    <module>fpi-framework-core</module>
    <module>fpi-framework-pom</module>
  </modules>
  <scm>
    <connection>scm:git:git://github.com/vincejv/fpi-framework.git</connection>
    <developerConnection>scm:git:git@github.com:vincejv/fpi-framework.git</developerConnection>
    <tag>608f58b58f8e4793c84ecad5af399b06e3211cbe</tag>
    <url>https://github.com/vincejv/fpi-framework</url>
  </scm>
  <distributionManagement>
    <repository>
      <id>${maven.deploy.nexus.repository-id}</id>
      <url>${maven.deploy.nexus.repository-url}</url>
    </repository>
    <snapshotRepository>
      <id>${maven.deploy.nexus.snapshot.repository-id}</id>
      <url>${maven.deploy.nexus.snapshot.repository-url}</url>
    </snapshotRepository>
  </distributionManagement>
  <properties>
    <maven.deploy.nexus.repository-id>ossrh</maven.deploy.nexus.repository-id>
    <nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version>
    <maven.deploy.nexus.repository-url>${maven.deploy.nexus.base-url}service/local/staging/deploy/maven2</maven.deploy.nexus.repository-url>
    <maven.deploy.nexus.snapshot.repository-id>${maven.deploy.nexus.repository-id}</maven.deploy.nexus.snapshot.repository-id>
    <maven-source-plugin.version>3.2.1</maven-source-plugin.version>
    <maven-gpg-plugin.version>3.0.1</maven-gpg-plugin.version>
    <sonar.host.url>https://sonarcloud.io</sonar.host.url>
    <sonar.organization>vincejv</sonar.organization>
    <maven-javadoc-plugin.version>3.4.1</maven-javadoc-plugin.version>
    <maven.deploy.nexus.base-url>https://s01.oss.sonatype.org/</maven.deploy.nexus.base-url>
    <maven.deploy.nexus.snapshot.repository-url>${maven.deploy.nexus.base-url}content/repositories/snapshots</maven.deploy.nexus.snapshot.repository-url>
    <jgitver.resolve-project-version>true</jgitver.resolve-project-version>
  </properties>
  <build />
  <profiles>
    <profile>
      <id>release-for-oss</id>
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-source-plugin</artifactId>
            <version>${maven-source-plugin.version}</version>
            <executions>
              <execution>
                <id>attach-sources</id>
                <goals>
                  <goal>jar-no-fork</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <artifactId>maven-javadoc-plugin</artifactId>
            <version>${maven-javadoc-plugin.version}</version>
            <executions>
              <execution>
                <id>attach-javadocs</id>
                <goals>
                  <goal>jar</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <artifactId>maven-gpg-plugin</artifactId>
            <version>${maven-gpg-plugin.version}</version>
            <executions>
              <execution>
                <id>sign-artifacts</id>
                <phase>verify</phase>
                <goals>
                  <goal>sign</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <groupId>org.sonatype.plugins</groupId>
            <artifactId>nexus-staging-maven-plugin</artifactId>
            <version>${nexus-staging-maven-plugin.version}</version>
            <extensions>true</extensions>
            <configuration>
              <serverId>${maven.deploy.nexus.repository-id}</serverId>
              <nexusUrl>${maven.deploy.nexus.base-url}</nexusUrl>
              <autoReleaseAfterClose>true</autoReleaseAfterClose>
              <stagingProgressTimeoutMinutes>120</stagingProgressTimeoutMinutes>
            </configuration>
          </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>
</project>
