<?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>dev.yasint</groupId>
  <artifactId>regexsynth</artifactId>
  <version>1.0.0</version>
  <name>RegexSynth</name>
  <description>RegexSynth is a minimal library that aims to construct, synthesize, and improve comprehension of complex regular expressions.</description>
  <url>https://github.com/wytm97/regexsynth-java</url>
  <inceptionYear>2020</inceptionYear>
  <licenses>
    <license>
      <name>MIT License</name>
      <url>http://www.opensource.org/licenses/mit-license.php</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>wytm97</id>
      <name>Yasin Tharak</name>
      <email>wytm97@gmail.com</email>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:git://github.com/wytm97/regexsynth-java.git</connection>
    <developerConnection>scm:git:ssh://github.com:wytm97/regexsynth-java.git</developerConnection>
    <url>https://github.com/wytm97/regexsynth-java/tree/master</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>com.google.re2j</groupId>
      <artifactId>re2j</artifactId>
      <version>1.3</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.12</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>
