<?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>
  <parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.5.5</version>
    <relativePath></relativePath>
  </parent>
  <groupId>ch.voulgarakis</groupId>
  <artifactId>quickfixj-spring-boot</artifactId>
  <version>1.0.3.RELEASE</version>
  <packaging>pom</packaging>
  <name>Spring Boot Starter Quickfixj Parent</name>
  <description>QuickfixJ integration in Spring-Boot</description>
  <url>https://github.com/gevoulga/spring-boot-quickfixj</url>
  <organization>
    <name>ch.voulgarakis</name>
    <url>https://voulgarakis.ch</url>
  </organization>
  <licenses>
    <license>
      <name>Apache License 2.0</name>
      <url>https://github.com/gevoulga/spring-boot-quickfixj/blob/master/LICENSE.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <developers>
    <developer>
      <name>Georgios Voulgarakis</name>
      <email>mail@voulgarakis.ch</email>
    </developer>
  </developers>
  <modules>
    <module>quickfixj-spring-boot-starter</module>
    <module>quickfixj-spring-boot-actuator</module>
    <module>quickfixj-spring-boot-starter-flux</module>
    <module>quickfixj-spring-boot-test</module>
  </modules>
  <scm>
    <connection>scm:git:git@github.com:gevoulga/spring-boot-quickfixj.git</connection>
    <developerConnection>scm:git:git@github.com:gevoulga/spring-boot-quickfixj.git</developerConnection>
    <url>https://github.com/gevoulga/spring-boot-quickfixj</url>
  </scm>
  <issueManagement>
    <system>GitHub</system>
    <url>https://github.com/gevoulga/spring-boot-quickfixj/issues</url>
  </issueManagement>
  <properties>
    <nexus-staging-maven-plugin.version>1.6.8</nexus-staging-maven-plugin.version>
    <java.version>11</java.version>
    <changelist>-SNAPSHOT</changelist>
    <maven-gpg-plugin.version>3.0.1</maven-gpg-plugin.version>
    <awaitility.version>3.1.6</awaitility.version>
    <quickfixj.version>2.1.1</quickfixj.version>
    <revision>1.0.3</revision>
  </properties>
  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>org.quickfixj</groupId>
        <artifactId>quickfixj-messages-all</artifactId>
        <version>${quickfixj.version}</version>
      </dependency>
      <dependency>
        <groupId>ch.voulgarakis</groupId>
        <artifactId>quickfixj-spring-boot-starter</artifactId>
        <version>${project.version}</version>
      </dependency>
      <dependency>
        <groupId>ch.voulgarakis</groupId>
        <artifactId>quickfixj-spring-boot-starter-flux</artifactId>
        <version>${project.version}</version>
      </dependency>
      <dependency>
        <groupId>ch.voulgarakis</groupId>
        <artifactId>quickfixj-spring-boot-actuator</artifactId>
        <version>${project.version}</version>
      </dependency>
      <dependency>
        <groupId>ch.voulgarakis</groupId>
        <artifactId>quickfixj-spring-boot-test</artifactId>
        <version>${project.version}</version>
      </dependency>
      <dependency>
        <groupId>org.awaitility</groupId>
        <artifactId>awaitility</artifactId>
        <version>${awaitility.version}</version>
      </dependency>
    </dependencies>
  </dependencyManagement>
  <build>
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>flatten-maven-plugin</artifactId>
        <executions>
          <execution>
            <id>flatten.clean</id>
            <phase>process-resources</phase>
            <goals>
              <goal>clean</goal>
            </goals>
          </execution>
          <execution>
            <id>flatten.process-resources</id>
            <phase>process-resources</phase>
            <goals>
              <goal>flatten</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <updatePomFile>true</updatePomFile>
          <flattenMode>resolveCiFriendliesOnly</flattenMode>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-jar-plugin</artifactId>
        <executions>
          <execution>
            <id>attach-tests</id>
            <goals>
              <goal>test-jar</goal>
              <goal>help</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-source-plugin</artifactId>
        <executions>
          <execution>
            <id>attach-sources</id>
            <goals>
              <goal>jar</goal>
              <goal>test-jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-javadoc-plugin</artifactId>
        <executions>
          <execution>
            <id>attach-javadocs</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <doclint>none</doclint>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <profiles>
    <profile>
      <id>release</id>
      <build>
        <plugins>
          <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>
        </plugins>
      </build>
      <distributionManagement>
        <repository>
          <id>github</id>
          <name>GitHub gevoulga Apache Maven Packages</name>
          <url>https://maven.pkg.github.com/gevoulga/spring-cloud-stream-binder-jms</url>
        </repository>
      </distributionManagement>
      <properties>
        <changelist>.RELEASE</changelist>
        <deployAtEnd>true</deployAtEnd>
        <skipTests>true</skipTests>
      </properties>
    </profile>
    <profile>
      <id>github</id>
      <distributionManagement>
        <repository>
          <id>github</id>
          <name>GitHub gevoulga Apache Maven Packages</name>
          <url>https://maven.pkg.github.com/gevoulga/spring-boot-quickfixj</url>
        </repository>
      </distributionManagement>
    </profile>
    <profile>
      <id>maven-central</id>
      <build>
        <plugins>
          <plugin>
            <groupId>org.sonatype.plugins</groupId>
            <artifactId>nexus-staging-maven-plugin</artifactId>
            <version>${nexus-staging-maven-plugin.version}</version>
            <extensions>true</extensions>
            <configuration>
              <serverId>ossrh</serverId>
              <nexusUrl>https://oss.sonatype.org/</nexusUrl>
              <autoReleaseAfterClose>true</autoReleaseAfterClose>
            </configuration>
          </plugin>
        </plugins>
      </build>
      <distributionManagement>
        <repository>
          <id>ossrh</id>
          <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
        </repository>
        <snapshotRepository>
          <id>ossrh</id>
          <url>https://oss.sonatype.org/content/repositories/snapshots</url>
        </snapshotRepository>
      </distributionManagement>
    </profile>
  </profiles>
</project>
