<?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">
  <!-- This module was also published with a richer model, Gradle metadata,  -->
  <!-- which should be used instead. Do not delete the following line which  -->
  <!-- is to indicate to Gradle or any Gradle module metadata file consumer  -->
  <!-- that they should prefer consuming it instead. -->
  <!-- do_not_remove: published-with-gradle-metadata -->
  <modelVersion>4.0.0</modelVersion>
  <groupId>dev.ethantmcgee</groupId>
  <artifactId>softauthn</artifactId>
  <version>0.1.4</version>
  <name>softauthn</name>
  <description>softauthn provides an implementation of the WebAuthn API and a software authenticator in Java, using the java-webauthn-server library for data models. It can be used to test WebAuthn backends.</description>
  <url>https://github.com/ethantmcgee/softauthn</url>
  <inceptionYear>2022</inceptionYear>
  <licenses>
    <license>
      <name>MIT</name>
      <url>https://mit-license.org</url>
      <distribution>https://mit-license.org</distribution>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>ethantmcgee</id>
      <name>Ethan McGee</name>
      <url>https://github.com/ethantmcgee/</url>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:git://github.com/ethantmcgee/softauthn.git</connection>
    <developerConnection>scm:git:ssh://git@github.com/ethantmcgee/softauthn.git</developerConnection>
    <url>https://github.com/ethantmcgee/softauthn</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>com.yubico</groupId>
      <artifactId>webauthn-server-core</artifactId>
      <version>2.6.0</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>com.augustcellars.cose</groupId>
      <artifactId>cose-java</artifactId>
      <version>1.1.0</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-databind</artifactId>
      <version>2.14.0-rc2</version>
      <scope>runtime</scope>
    </dependency>
  </dependencies>
</project>
