<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://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.github.martinwithaar</groupId>
  <artifactId>encryptor4j</artifactId>
  <version>0.1</version>
  <name>Encryptor4j</name>
  <description>Strong encryption for Java simplified</description>
  <url>https://github.com/martinwithaar/Encryptor4j</url>
  <licenses>
    <license>
      <name>MIT License</name>
      <url>https://github.com/martinwithaar/Encryptor4j/blob/master/LICENSE</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>martinwithaar</id>
      <name>Martin Withaar</name>
      <email>martin.withaar@gmail.com</email>
    </developer>
    <developer>
      <id>sishbi</id>
      <name>Simon Billingsley</name>
      <email>simon@sishbi.me.uk</email>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:git://github.com/martinwithaar/Encryptor4j.git</connection>
    <developerConnection>scm:git:ssh://github.com:martinwithaar/Encryptor4j.git</developerConnection>
    <url>https://github.com/martinwithaar/Encryptor4j/tree/master</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.12</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>commons-io</groupId>
      <artifactId>commons-io</artifactId>
      <version>2.5</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
      <version>1.7.14</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.bouncycastle</groupId>
      <artifactId>bcprov-jdk15on</artifactId>
      <version>1.54</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>commons-cli</groupId>
      <artifactId>commons-cli</artifactId>
      <version>1.3.1</version>
      <scope>compile</scope>
    </dependency>
  </dependencies>
</project>
