<?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.github.mmauro94</groupId>
  <artifactId>mkvtoolnix-wrapper</artifactId>
  <version>1.0.0</version>
  <name>mkvtoolnix-wrapper</name>
  <description>An easy to use light kotlin-jvm wrapper for most common mkvmerge and mkvpropedit CLI commands</description>
  <url>https://github.com/MMauro94/mkvtoolnix-wrapper</url>
  <inceptionYear>2019</inceptionYear>
  <licenses>
    <license>
      <name>MIT License</name>
      <url>https://opensource.org/licenses/MIT</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>MMauro94</id>
      <name>Mauro Molin</name>
      <email>molin.mauro@gmail.com</email>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:ssh://github.com:MMauro94/mkvtoolnix-wrapper.git</connection>
    <developerConnection>http://github.com/MMauro94/mkvtoolnix-wrapper/tree/master</developerConnection>
    <url>scm:git:git://github.com/MMauro94/mkvtoolnix-wrapper.git</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>com.beust</groupId>
      <artifactId>klaxon</artifactId>
      <version>5.0.5</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.jetbrains.kotlin</groupId>
      <artifactId>kotlin-stdlib-jdk8</artifactId>
      <version>1.3.21</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.12</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.jetbrains.kotlin</groupId>
      <artifactId>kotlin-test</artifactId>
      <version>1.3.21</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.jetbrains.kotlin</groupId>
      <artifactId>kotlin-reflect</artifactId>
      <version>1.3.21</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>
