<?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">
  <!-- do_not_remove: published-with-gradle-metadata -->
<modelVersion>4.0.0</modelVersion>
  <groupId>cc.ekblad</groupId>
  <artifactId>4koma</artifactId>
  <version>v0.1.0</version>
  <name>4koma</name>
  <description>Simple, standards-compliant TOML parser</description>
  <url>https://github.com/valderman/4koma</url>
  <inceptionYear>2021</inceptionYear>
  <licenses>
    <license>
      <name>MIT</name>
      <url>https://github.com/valderman/4koma/blob/main/LICENSE</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>valderman</id>
      <name>Anton Ekblad</name>
      <email>anton@ekblad.cc</email>
    </developer>
  </developers>
  <scm>
    <connection>scm:git://github.com/valderman/4koma.git</connection>
    <developerConnection>scm:git://github.com/valderman/4koma.git</developerConnection>
    <url>git://github.com/valderman/4koma.git</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>org.antlr</groupId>
      <artifactId>antlr4</artifactId>
      <version>4.9.2</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.jetbrains.kotlin</groupId>
      <artifactId>kotlin-stdlib</artifactId>
      <version>1.5.31</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>org.jetbrains.kotlin</groupId>
      <artifactId>kotlin-reflect</artifactId>
      <version>1.5.31</version>
      <scope>runtime</scope>
    </dependency>
  </dependencies>
</project>
