<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://maven.apache.org/POM/4.0.0"
    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>

    <groupId>io.xconn</groupId>
    <artifactId>cryptology</artifactId>
    <version>1.0.1</version>
    <packaging>pom</packaging>


    <name>Cryptology Java</name>
    <description>CryptoSign, SealedBox and SecretBox implementation in Java</description>
    <url>https://github.com/xconnio/cryptology-java</url>
    <licenses>
        <license>
            <name>Apache-2.0</name>
            <url>https://opensource.org/licenses/Apache-2.0</url>
        </license>
    </licenses>

  <dependencies>
    <dependency>
      <groupId>org.bouncycastle</groupId>
      <artifactId>bcprov-jdk18on</artifactId>
      <version>1.77</version>
      <scope>runtime</scope>
    </dependency>
  </dependencies>

    <developers>
        <developer>
            <id>xconnio</id>
            <name>XconnIO</name>
            <email>om26er@xconn.io</email>
        </developer>
    </developers>
    <scm>
        <url>git@github.com:xconnio/cryptology-java.git</url>
        <connection>scm:git:git@github.com:xconnio/cryptology-java.git</connection>
        <developerConnection>scm:git:ssh://github.com/xconnio/cryptology-java.git</developerConnection>
    </scm>
</project>
