<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  <parent>
    <artifactId>EssentialsParent</artifactId>
    <groupId>net.ess3</groupId>
    <version>2.x-SNAPSHOT</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>EssentialsXMPP</artifactId>
  <url>http://ess3.net/</url>
  <issueManagement>
    <system>JIRA</system>
    <url>http://essentials3.atlassian.net</url>
  </issueManagement>
  <ciManagement>
    <system>TeamCity</system>
    <url>http://ci.ess3.net/</url>
  </ciManagement>
  <licenses>
    <license>
      <name>GPLv3</name>
      <url>http://www.gnu.org/copyleft/gpl.html</url>
    </license>
  </licenses>
  <scm>
    <connection>scm:git:https://github.com/essentials/Essentials.git</connection>
    <developerConnection>scm:git:https://github.com/essentials/Essentials.git</developerConnection>
    <url>https://github.com/essentials/Essentials</url>
  </scm>
  <organization>
    <name>Essentials Team</name>
    <url>http://ess3.net/</url>
  </organization>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <version>2.1</version>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <artifactSet>
            <includes>
              <include>org.igniterealtime.smack:smack</include>
            </includes>
          </artifactSet>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>net.ess3</groupId>
      <artifactId>Essentials</artifactId>
      <version>2.x-SNAPSHOT</version>
      <scope>compile</scope>
      <exclusions>
        <exclusion>
          <artifactId>BOSEconomy</artifactId>
          <groupId>BOSEconomy</groupId>
        </exclusion>
        <exclusion>
          <artifactId>iConomy5</artifactId>
          <groupId>iConomy</groupId>
        </exclusion>
        <exclusion>
          <artifactId>iConomy6</artifactId>
          <groupId>iConomy</groupId>
        </exclusion>
        <exclusion>
          <artifactId>GroupManager</artifactId>
          <groupId>net.ess3</groupId>
        </exclusion>
        <exclusion>
          <artifactId>MultiCurrency</artifactId>
          <groupId>MultiCurrency</groupId>
        </exclusion>
        <exclusion>
          <artifactId>bukkit-permissions</artifactId>
          <groupId>com.platymuus</groupId>
        </exclusion>
        <exclusion>
          <artifactId>PermissionsEx</artifactId>
          <groupId>ru.tehkode</groupId>
        </exclusion>
        <exclusion>
          <artifactId>Privileges</artifactId>
          <groupId>Privileges</groupId>
        </exclusion>
        <exclusion>
          <artifactId>SimplyPerms</artifactId>
          <groupId>SimplyPerms</groupId>
        </exclusion>
        <exclusion>
          <artifactId>zPermissions</artifactId>
          <groupId>zPermissions</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.bukkit</groupId>
      <artifactId>bukkit</artifactId>
      <version>1.12.2-R0.1-SNAPSHOT</version>
      <scope>provided</scope>
      <exclusions>
        <exclusion>
          <artifactId>commons-lang</artifactId>
          <groupId>commons-lang</groupId>
        </exclusion>
        <exclusion>
          <artifactId>json-simple</artifactId>
          <groupId>com.googlecode.json-simple</groupId>
        </exclusion>
        <exclusion>
          <artifactId>guava</artifactId>
          <groupId>com.google.guava</groupId>
        </exclusion>
        <exclusion>
          <artifactId>gson</artifactId>
          <groupId>com.google.code.gson</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>hamcrest-core</artifactId>
          <groupId>org.hamcrest</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.projectlombok</groupId>
      <artifactId>lombok</artifactId>
      <version>1.12.2</version>
      <scope>compile</scope>
    </dependency>
  </dependencies>
</project>