<?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>at.favre.lib</groupId>
  <artifactId>id-mask</artifactId>
  <version>0.3.0</version>
  <name>ID Masking Library</name>
  <description>IDMask is a Java library for masking internal ids (e.g. from your DB) when they need to be published to
        hide their actual value and to prevent forging. It has support optional randomisation has a wide support for
        various Java types including long, UUID and BigInteger. This library bases its security on strong cryptographic
        primitives.</description>
  <url>https://github.com/patrickfav/id-mask/modules/id-mask</url>
  <inceptionYear>2019</inceptionYear>
  <licenses>
    <license>
      <name>Apache License, Version 2.0</name>
      <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>patrickfav</id>
      <name>Patrick Favre-Bulle</name>
      <email>patrick.favrebulle@gmail.com</email>
    </developer>
  </developers>
  <scm>
    <connection>https://github.com/patrickfav/id-mask.git</connection>
    <developerConnection>https://github.com/patrickfav/id-mask.git</developerConnection>
    <url>https://github.com/patrickfav/id-mask</url>
  </scm>
  <issueManagement>
    <system>Github</system>
    <url>https://github.com/patrickfav/id-mask/issues</url>
  </issueManagement>
  <ciManagement>
    <system>Travis</system>
    <url>https://travis-ci.org/patrickfav/id-mask</url>
  </ciManagement>
  <distributionManagement>
    <repository>
      <id>bintray-patrickfav</id>
      <name>patrickfav-id-mask</name>
      <url>https://api.bintray.com/maven/patrickfav/maven/id-mask/;publish=1</url>
    </repository>
  </distributionManagement>
  <dependencies>
    <dependency>
      <groupId>at.favre.lib</groupId>
      <artifactId>bytes</artifactId>
      <version>1.0.0</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>at.favre.lib</groupId>
      <artifactId>hkdf</artifactId>
      <version>1.0.1</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>com.google.auto.value</groupId>
      <artifactId>auto-value-annotations</artifactId>
      <version>1.6.3</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>com.google.auto.value</groupId>
      <artifactId>auto-value</artifactId>
      <version>1.6.3</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.jetbrains</groupId>
      <artifactId>annotations</artifactId>
      <version>15.0</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>net.markenwerk</groupId>
      <artifactId>utils-lrucache</artifactId>
      <version>1.0.1</version>
      <scope>compile</scope>
    </dependency>
  </dependencies>
  <repositories>
    <repository>
      <snapshots>
        <enabled>false</enabled>
      </snapshots>
      <id>maven-central-repo</id>
      <url>http://repo1.maven.org/maven2</url>
    </repository>
  </repositories>
</project>
