<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <name>clj-yaml</name>
  <description>YAML encoding and decoding for Clojure using SnakeYAML</description>
  <url>https://github.com/clj-commons/clj-yaml</url>
  <licenses>
    <license>
      <name>Eclipse Public License</name>
      <url>http://www.eclipse.org/legal/epl-v10.html</url>
    </license>
  </licenses>
  <scm>
    <url>https://github.com/clj-commons/clj-yaml</url>
    <connection>scm:git:git://github.com/clj-commons/clj-yaml.git</connection>
    <developerConnection>scm:git:ssh://git@github.com/clj-commons/clj-yaml.git</developerConnection>
    <tag>v1.0.26</tag>
  </scm>
  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>
  <repositories>
    <repository>
      <id>clojars</id>
      <url>https://repo.clojars.org/</url>
    </repository>
  </repositories>
  <distributionManagement>
    <repository>
      <id>clojars</id>
      <name>Clojars repository</name>
      <url>https://clojars.org/repo</url>
    </repository>
  </distributionManagement>
  <dependencies>
    <dependency>
      <groupId>org.clojure</groupId>
      <artifactId>clojure</artifactId>
      <version>1.11.1</version>
    </dependency>
    <dependency>
      <groupId>org.yaml</groupId>
      <artifactId>snakeyaml</artifactId>
      <version>1.33</version>
    </dependency>
    <dependency>
      <groupId>org.flatland</groupId>
      <artifactId>ordered</artifactId>
      <version>1.5.9</version>
    </dependency>
  </dependencies>
  <build>
    <sourceDirectory>src/clojure</sourceDirectory>
  </build>
  <groupId>clj-commons</groupId>
  <artifactId>clj-yaml</artifactId>
  <version>1.0.26</version>
</project>
