<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://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">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.kotcrab.remark</groupId>
  <artifactId>remark</artifactId>
  <version>1.0.0</version>
  <name>remark</name>
  <description>Remark is a library for taking (X)HTML input and outputting clean Markdown, Markdown Extra, or MultiMarkdown compatible text.</description>
  <url>https://github.com/kotcrab/remark-java/</url>
  <licenses>
    <license>
      <name>The Apache License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <name>Phil DeJarnett</name>
      <url>http://www.overzealous.com</url>
    </developer>
    <developer>
      <name>Guilherme I F L Weizenmann</name>
      <url>http://itquasar.com</url>
    </developer>
    <developer>
      <id>kotcrab</id>
      <name>Pawel Pastuszak</name>
      <url>https://kotcrab.com</url>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:git@github.com:kotcrab/remark-java.git</connection>
    <developerConnection>scm:git:git@github.com:kotcrab/remark-java.git</developerConnection>
    <url>git@github.com:kotcrab/remark-java.git</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>org.jsoup</groupId>
      <artifactId>jsoup</artifactId>
      <version>1.9.2</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>commons-io</groupId>
      <artifactId>commons-io</artifactId>
      <version>2.4</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.commons</groupId>
      <artifactId>commons-lang3</artifactId>
      <version>3.4</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>commons-cli</groupId>
      <artifactId>commons-cli</artifactId>
      <version>1.2</version>
      <scope>compile</scope>
      <optional>true</optional>
    </dependency>
  </dependencies>
</project>
