<?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>cn.org.expect</groupId>
    <artifactId>modest</artifactId>
    <version>1.0.4</version>
  </parent>
  <groupId>cn.org.expect</groupId>
  <artifactId>modest-compress</artifactId>
  <version>1.0.4</version>
  <name>${project.artifactId}</name>
  <description>File compression and decompression utilities</description>
  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <dependencies>
    <dependency>
      <groupId>org.apache.commons</groupId>
      <artifactId>commons-compress</artifactId>
    </dependency>
    <dependency>
      <groupId>com.github.junrar</groupId>
      <artifactId>junrar</artifactId>
    </dependency>
    <dependency>
      <groupId>cn.org.expect</groupId>
      <artifactId>modest-expression</artifactId>
    </dependency>
    <dependency>
      <groupId>cn.org.expect</groupId>
      <artifactId>modest-ioc</artifactId>
    </dependency>
    <dependency>
      <groupId>cn.org.expect</groupId>
      <artifactId>modest-ioc-test</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>cn.org.expect</groupId>
      <artifactId>modest-crypto</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
      <version>1.7.9</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-simple</artifactId>
      <version>1.7.9</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <groupId>cn.org.expect</groupId>
        <artifactId>modest-maven-plugin</artifactId>
      </plugin>
    </plugins>
  </build>
</project>
