<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" 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>com.oliverspryn.library</groupId>
  <artifactId>semver</artifactId>
  <version>1.0.0</version>
  <name>Semver</name>
  <description>A Kotlin library for parsing and comparing version numbers which adhere to the Semantic Versioning 2.0.0 standard.</description>
  <url>https://oliverspryn.com/portfolio/semver</url>
  <licenses>
    <license>
      <name>https://mit-license.org/</name>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>oliverspryn</id>
      <name>Oliver Spryn</name>
      <url>https://oliverspryn.com/</url>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:git://github.com/oliverspryn/semver.git</connection>
    <developerConnection>scm:git:ssh://github.com/oliverspryn/semver.git</developerConnection>
    <url>https://github.com/oliverspryn/semver</url>
  </scm>
  <issueManagement>
    <url>https://github.com/oliverspryn/semver/issues</url>
  </issueManagement>
  <dependencies>
    <dependency>
      <groupId>org.jetbrains.kotlin</groupId>
      <artifactId>kotlin-stdlib-jdk8</artifactId>
      <version>1.6.10</version>
      <scope>runtime</scope>
    </dependency>
  </dependencies>
</project>
