<?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>io.takari</groupId>
    <artifactId>takari</artifactId>
    <version>48</version>
  </parent>
  <packaging>takari-jar</packaging>
  <artifactId>takari-archiver</artifactId>
  <version>0.1.29</version>
  <name>Provisio :: Archiver</name>
  <dependencies>
    <dependency>
      <groupId>org.apache.commons</groupId>
      <artifactId>commons-compress</artifactId>
      <version>1.21</version>
    </dependency>
    <!-- This is optional in the commons-compress POM -->
    <dependency>
      <groupId>org.tukaani</groupId>
      <artifactId>xz</artifactId>
      <version>1.9</version>
    </dependency>
    <!-- Directory Scanner -->
    <dependency>
      <groupId>org.codehaus.plexus</groupId>
      <artifactId>plexus-utils</artifactId>
      <version>3.4.1</version>
    </dependency>
    <!-- Testing -->
    <dependency>
      <groupId>org.codehaus.swizzle</groupId>
      <artifactId>swizzle-stream</artifactId>
      <version>1.6.2</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.13.2</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <profiles>
    <profile>
      <id>takari-release</id>
      <properties>
        <takari.release.gpg.skip>true</takari.release.gpg.skip>
      </properties>
      <build>
        <plugins>
          <plugin>
            <groupId>ca.vanzyl.maven.plugins</groupId>
            <artifactId>sigstore-maven-plugin</artifactId>
            <version>0.0.11</version>
            <executions>
              <execution>
                <configuration>
                  <mavenPgpSignatures>true</mavenPgpSignatures>
                </configuration>
                <goals>
                  <goal>sign</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>

  <scm>
    <tag>takari-archiver-0.1.29</tag>
  </scm>
</project>
