<?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>cn.wumoe</groupId>
  <artifactId>hime</artifactId>
  <version>1.8</version>
  <name>hime</name>
  <description>This is the interpreter of Hime language, a dialect of Lisp, run on JVM platform.</description>
  <url>https://hime.wumoe.cn</url>
  <licenses>
    <license>
      <name>Gnu General Public License, Version 3</name>
      <url>http://www.gnu.org/licenses/quick-guide-gplv3.pdf</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <name>RMOlive</name>
      <email>rmolives@gmail.com</email>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:git@github.com:RMOlive/Hime.git</connection>
    <developerConnection>scm:git:ssh://git@github.com:RMOlive/Hime.git</developerConnection>
    <url>https://github.com/RMOlive/Hime.git</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>org.jetbrains.kotlin</groupId>
      <artifactId>kotlin-stdlib-jdk8</artifactId>
      <version>1.7.0-Beta</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>com.google.guava</groupId>
      <artifactId>guava</artifactId>
      <version>31.1-jre</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>commons-io</groupId>
      <artifactId>commons-io</artifactId>
      <version>2.11.0</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>com.google.zxing</groupId>
      <artifactId>core</artifactId>
      <version>3.5.0</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>com.google.zxing</groupId>
      <artifactId>javase</artifactId>
      <version>3.5.0</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>com.github.tulskiy</groupId>
      <artifactId>jkeymaster</artifactId>
      <version>1.3</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>com.fifesoft</groupId>
      <artifactId>rsyntaxtextarea</artifactId>
      <version>3.2.0</version>
      <scope>runtime</scope>
    </dependency>
  </dependencies>
</project>
