<?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.deliveredtechnologies</groupId>
  <artifactId>rulebook-core</artifactId>
  <version>0.10</version>
  <name>RuleBook</name>
  <description>A simple and intuitive rules abstraction for Java</description>
  <url>http://www.deliveredtechnologies.com</url>
  <inceptionYear>2017</inceptionYear>
  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>Clayton7510</id>
      <name>Clayton Long</name>
      <email>Clayton7510@gmail.com</email>
      <url>https://github.com/Clayton7510</url>
      <roles>
        <role>Author</role>
      </roles>
    </developer>
  </developers>
  <contributors>
    <contributor>
      <name>Nicholas Lambert</name>
      <url>https://github.com/NicolasLambert</url>
      <roles>
        <role>code contributor for v0.2.1</role>
        <role>raised dsl enhancement for v0.8</role>
      </roles>
    </contributor>
    <contributor>
      <name>wheezymustafa</name>
      <url>https://github.com/wheezymustafa</url>
      <roles>
        <role>raised bugs and enhancement suggestions for v0.3 and v0.3.1</role>
      </roles>
    </contributor>
    <contributor>
      <name>Alessandro Torrisi</name>
      <url>https://github.com/typhoon1978</url>
      <roles>
        <role>raised bug for v0.5.1</role>
      </roles>
    </contributor>
    <contributor>
      <name>Marc Seeger</name>
      <url>https://github.com/Gersee</url>
      <roles>
        <role>raised bug for v0.5.1</role>
      </roles>
    </contributor>
    <contributor>
      <name>abhineet27</name>
      <url>https://github.com/abhineet27</url>
      <roles>
        <role>raised bug for v0.6.1</role>
        <role>raised bug for v0.6.2</role>
      </roles>
    </contributor>
    <contributor>
      <name>Darrell Merryweather</name>
      <url>https://github.com/darrellme</url>
      <roles>
        <role>raised rule chain enhancement for v0.8</role>
      </roles>
    </contributor>
    <contributor>
      <name>Kent Jones</name>
      <url>https://github.com/kentjones</url>
      <roles>
        <role>raised bug for v0.8.1</role>
      </roles>
    </contributor>
    <contributor>
      <name>Ivan Portugal</name>
      <url>https://github.com/ivanbportugal</url>
      <roles>
        <role>raised bug for v0.8.1</role>
      </roles>
    </contributor>
    <contributor>
      <name>Brad Egler</name>
      <url>https://github.com/bradegler</url>
      <roles>
        <role>upgraded gradle build for v0.9.1</role>
      </roles>
    </contributor>
    <contributor>
      <name>pjotre86</name>
      <url>https://github.com/pjotre86</url>
      <roles>
        <role>raised bug for v0.9.1</role>
      </roles>
    </contributor>
    <contributor>
      <name>Tomek Bielaszewski</name>
      <url>https://github.com/tomekbielaszewski</url>
      <roles>
        <role>corrected some errata in the README</role>
      </roles>
    </contributor>
    <contributor>
      <name>Abhijeet Joshi</name>
      <url>https://github.com/jabhijeet</url>
      <roles>
        <role>code contributor for v0.10</role>
      </roles>
    </contributor>
    <contributor>
      <name>Riz Joj</name>
      <url>https://github.com/rizjoj</url>
      <roles>
        <role>code contributor for v0.10</role>
      </roles>
    </contributor>
    <contributor>
      <name>xPlutox</name>
      <url>https://github.com/xPlutox</url>
      <roles>
        <role>code contributor for v0.10</role>
      </roles>
    </contributor>
  </contributors>
  <scm>
    <connection>scm:git:git@github.com:Clayton7510/RuleBook.git</connection>
    <developerConnection>scm:git:git@github.com:Clayton7510/RuleBook.git</developerConnection>
    <url>https://github.com/Clayton7510/RuleBook</url>
  </scm>
  <issueManagement>
    <system>GitHub</system>
    <url>https://github.com/Clayton7510/RuleBook/issues</url>
  </issueManagement>
  <distributionManagement>
    <site>
      <id>Delivered Technologies</id>
      <url>http://www.deliveredtechnologies.com</url>
    </site>
  </distributionManagement>
  <dependencies>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
      <version>1.7.22</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.reflections</groupId>
      <artifactId>reflections</artifactId>
      <version>0.9.10</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.12</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>net.jodah</groupId>
      <artifactId>concurrentunit</artifactId>
      <version>0.4.2</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-all</artifactId>
      <version>1.10.19</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>cglib</groupId>
      <artifactId>cglib-nodep</artifactId>
      <version>3.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.objenesis</groupId>
      <artifactId>objenesis</artifactId>
      <version>2.1</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>
