<?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>
  <parent>
    <groupId>com.zxyinfo</groupId>
    <artifactId>dependencies-parent</artifactId>
    <version>1.0.0</version>
  </parent>
  <artifactId>transactional-outbox-queue</artifactId>
  <packaging>pom</packaging>
  <version>1.0.3</version>
  <modules>
    <module>queue-spring-boot-autoconfigure</module>
    <module>queue-spring-boot-starter</module>
    <!--<module>queue-spring-boot-samples</module>-->
  </modules>
  <properties>
    <maven.compiler.source>8</maven.compiler.source>
    <maven.compiler.target>8</maven.compiler.target>
    <build.version>1.0.3</build.version>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <spring-boot.version>2.2.6.RELEASE</spring-boot.version>
    <killbill-queue.version>0.24.4</killbill-queue.version>
  </properties>
  <dependencyManagement>
  <dependencies>
  <dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-dependencies</artifactId>
    <version>${spring-boot.version}</version>
    <type>pom</type>
    <scope>import</scope>
  </dependency>
    <dependency>
      <artifactId>killbill-queue</artifactId>
      <groupId>org.kill-bill.commons</groupId>
      <version>${killbill-queue.version}</version>
    </dependency>
    <dependency>
      <artifactId>ST4</artifactId>
      <groupId>org.antlr</groupId>
      <version>4.3.1</version>
    </dependency>
    <dependency>
      <groupId>com.zxyinfo</groupId>
      <artifactId>queue-spring-boot-autoconfigure</artifactId>
      <version>${project.version}</version>
    </dependency>
  </dependencies>
  </dependencyManagement>
  <profiles>
    <profile>
      <id>release</id>
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-javadoc-plugin</artifactId>
            <executions>
              <execution>
                <phase>package</phase>
                <goals>
                  <goal>jar</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>
</project>