<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>dev.mccue</groupId>
  <artifactId>jdk-httpserver-mustache</artifactId>
  <version>2024.08.18</version>
  <name>jdk-httpserver-mustache</name>
  <description>Helpers for mustache generated html responses with the JDK's built-in HTTP server.</description>
  <url>https://github.com/bowbahdoe/jdk-httpserver-mustache</url>
  <licenses>
    <license>
      <name>Apache License, Version 2.0</name>
      <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <name>Ethan McCue</name>
      <email>ethan@mccue.dev</email>
      <organization>McCue Software Solutions</organization>
      <organizationUrl>https://www.mccue.dev</organizationUrl>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:git://github.com/bowbahdoe/jdk-httpserver-mustache.git</connection>
    <developerConnection>scm:git:ssh://github.com:bowbahdoe/jdk-httpserver-mustache.git</developerConnection>
    <url>https://github.com/bowbahdoe/jdk-httpserver-mustache/tree/main</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>dev.mccue</groupId>
      <artifactId>jdk-httpserver</artifactId>
      <version>2024.05.08</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>com.samskivert</groupId>
      <artifactId>jmustache</artifactId>
      <version>1.16</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.jspecify</groupId>
      <artifactId>jspecify</artifactId>
      <version>1.0.0</version>
      <scope>compile</scope>
    </dependency>
  </dependencies>
</project>