<?xml version="1.0" encoding="UTF-8"?>
<project 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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>dev.turingcomplete</groupId>
  <artifactId>kotlin-onetimepassword</artifactId>
  <version>2.0.1</version>
  <name>Kotlin One-Time Password Library</name>
  <description>A Kotlin one-time password library to generate "Google Authenticator", "Time-based One-time Password" (TOTP) and "HMAC-based One-time Password" (HOTP) codes based on RFC 4226 and 6238.</description>
  <url>https://github.com/marcelkliemannel/kotlin-onetimepassword</url>
  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>marcelkliemannel</id>
      <name>Marcel Kliemannel</name>
      <email>dev@marcelkliemannel.com</email>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:git://github.com:marcelkliemannel/kotlin-onetimepassword.git</connection>
    <developerConnection>scm:git:git://github.com:marcelkliemannel/kotlin-onetimepassword.git</developerConnection>
    <url>https://github.com/marcelkliemannel/kotlin-onetimepassword</url>
  </scm>
  <issueManagement>
    <system>Github</system>
    <url>https://github.com/marcelkliemannel/kotlin-onetimepassword/issues</url>
  </issueManagement>
  <dependencies>
    <dependency>
      <groupId>org.jetbrains.kotlin</groupId>
      <artifactId>kotlin-stdlib</artifactId>
      <version>1.3.41</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>commons-codec</groupId>
      <artifactId>commons-codec</artifactId>
      <version>1.12</version>
      <scope>runtime</scope>
    </dependency>
  </dependencies>
</project>
