2014-04-04 20:53:42 +02:00
|
|
|
<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/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2014-04-05 22:42:01 +02:00
|
|
|
<groupId>com.massivecraft</groupId>
|
2014-04-04 20:53:42 +02:00
|
|
|
<artifactId>Factions</artifactId>
|
2018-02-11 03:11:15 +01:00
|
|
|
<version>1.6.9.5-U0.2.1-SNAPSHOT</version>
|
2014-04-04 20:53:42 +02:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>Factions</name>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
2014-04-04 20:55:21 +02:00
|
|
|
|
2014-04-04 20:53:42 +02:00
|
|
|
<build>
|
|
|
|
<defaultGoal>clean package install</defaultGoal>
|
2016-05-03 22:59:51 +02:00
|
|
|
<finalName>${project.name}</finalName>
|
|
|
|
<sourceDirectory>src/main/java</sourceDirectory>
|
2014-04-04 20:53:42 +02:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<filtering>true</filtering>
|
2016-05-03 22:59:51 +02:00
|
|
|
<directory>src/main/resources/</directory>
|
2014-04-04 20:53:42 +02:00
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2016-05-03 22:59:51 +02:00
|
|
|
<version>3.5.1</version>
|
2014-04-04 20:53:42 +02:00
|
|
|
<configuration>
|
2017-12-19 11:18:13 +01:00
|
|
|
<source>1.7</source>
|
|
|
|
<target>1.7</target>
|
2014-04-04 20:53:42 +02:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2014-10-13 21:10:18 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2016-05-03 22:59:51 +02:00
|
|
|
<version>2.4.3</version>
|
2014-10-13 21:10:18 +02:00
|
|
|
<configuration>
|
2014-11-02 20:15:11 +01:00
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
2014-10-13 21:10:18 +02:00
|
|
|
<relocations>
|
2015-05-25 22:46:18 +02:00
|
|
|
<relocation>
|
|
|
|
<pattern>mkremins.fanciful</pattern>
|
|
|
|
<shadedPattern>com.massivecraft.factions.shade.mkremins.fanciful</shadedPattern>
|
|
|
|
</relocation>
|
2014-10-25 20:22:41 +02:00
|
|
|
<relocation>
|
2014-10-27 01:13:08 +01:00
|
|
|
<pattern>com.google.gson</pattern>
|
|
|
|
<shadedPattern>com.massivecraft.factions.shade.com.google.gson</shadedPattern>
|
2014-10-25 20:22:41 +02:00
|
|
|
</relocation>
|
2014-10-13 21:10:18 +02:00
|
|
|
</relocations>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2014-04-04 20:53:42 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2014-10-13 21:10:18 +02:00
|
|
|
|
2014-04-04 20:53:42 +02:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2015-02-12 16:21:17 +01:00
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
2017-12-19 10:14:57 +01:00
|
|
|
<version>1.12.2-R0.1-SNAPSHOT</version>
|
2016-05-03 22:59:51 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>bungeecord-chat</artifactId>
|
|
|
|
<groupId>net.md-5</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>persistence-api</artifactId>
|
|
|
|
<groupId>javax.persistence</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2014-04-04 20:53:42 +02:00
|
|
|
</dependency>
|
2014-04-04 21:35:35 +02:00
|
|
|
<dependency>
|
2014-10-09 18:04:11 +02:00
|
|
|
<groupId>net.milkbowl.vault</groupId>
|
|
|
|
<artifactId>VaultAPI</artifactId>
|
2016-08-12 01:16:46 +02:00
|
|
|
<version>1.6</version>
|
2014-04-04 21:35:35 +02:00
|
|
|
<scope>provided</scope>
|
2016-05-03 22:59:51 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2014-04-04 21:35:35 +02:00
|
|
|
</dependency>
|
2014-04-05 22:42:01 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.sk89q</groupId>
|
|
|
|
<artifactId>worldguard</artifactId>
|
2016-05-03 22:59:51 +02:00
|
|
|
<version>6.1.1-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>bukkit-classloader-check</artifactId>
|
|
|
|
<groupId>com.sk89q.spigot</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>commandbook</artifactId>
|
|
|
|
<groupId>com.sk89q</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>jsr305</artifactId>
|
|
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>js</artifactId>
|
|
|
|
<groupId>rhino</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>truezip</artifactId>
|
|
|
|
<groupId>de.schlichtherle</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>jchronic</artifactId>
|
|
|
|
<groupId>com.sk89q</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>worldedit</artifactId>
|
|
|
|
<groupId>com.sk89q</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2014-04-05 22:42:01 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2016-05-03 22:59:51 +02:00
|
|
|
<groupId>com.sk89q.worldedit</groupId>
|
|
|
|
<artifactId>worldedit-bukkit</artifactId>
|
|
|
|
<version>6.1.1-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>jsr305</artifactId>
|
|
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>bukkit-classloader-check</artifactId>
|
|
|
|
<groupId>org.sk89q.bukkit</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>dummypermscompat</artifactId>
|
|
|
|
<groupId>com.sk89q</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>jchronic</artifactId>
|
|
|
|
<groupId>com.sk89q</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>js</artifactId>
|
|
|
|
<groupId>rhino</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>truezip</artifactId>
|
|
|
|
<groupId>de.schlichtherle</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>jlibnoise</artifactId>
|
|
|
|
<groupId>com.sk89q.lib</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>paranamer</artifactId>
|
|
|
|
<groupId>com.thoughtworks.paranamer</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>snakeyaml</artifactId>
|
|
|
|
<groupId>org.yaml</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2014-04-05 22:42:01 +02:00
|
|
|
</dependency>
|
2014-05-19 18:44:15 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.ess3</groupId>
|
2017-12-19 10:14:57 +01:00
|
|
|
<artifactId>EssentialsX</artifactId>
|
|
|
|
<version>2.0.1</version>
|
2016-05-03 22:59:51 +02:00
|
|
|
<scope>provided</scope>
|
2014-05-19 18:44:15 +02:00
|
|
|
</dependency>
|
2014-07-08 20:54:22 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.ess3</groupId>
|
2017-12-19 10:14:57 +01:00
|
|
|
<artifactId>EssentialsXChat</artifactId>
|
|
|
|
<version>2.0.1</version>
|
2016-05-03 22:59:51 +02:00
|
|
|
<scope>provided</scope>
|
2016-05-03 23:21:30 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>Essentials</artifactId>
|
|
|
|
<groupId>net.ess3</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2014-07-08 20:54:22 +02:00
|
|
|
</dependency>
|
2015-05-25 22:46:18 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>mkremins</groupId>
|
|
|
|
<artifactId>fanciful</artifactId>
|
2017-12-19 20:09:44 +01:00
|
|
|
<version>0.4.0-SNAPSHOT</version>
|
2016-05-03 22:59:51 +02:00
|
|
|
<scope>compile</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2015-05-25 22:46:18 +02:00
|
|
|
</dependency>
|
2014-12-05 06:04:00 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.dynmap</groupId>
|
|
|
|
<artifactId>dynmap</artifactId>
|
|
|
|
<version>2.0</version>
|
|
|
|
<scope>provided</scope>
|
2016-05-03 22:59:51 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>Permissions</artifactId>
|
|
|
|
<groupId>com.nijikokun.bukkit</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>bPermissions</artifactId>
|
|
|
|
<groupId>de.bananaco</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>EssentialsGroupManager</artifactId>
|
|
|
|
<groupId>org.anjocaido</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>spoutpluginapi</artifactId>
|
|
|
|
<groupId>org.getspout</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>PermissionsBukkit</artifactId>
|
|
|
|
<groupId>com.platymuus.bukkit.permissions</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>PermissionsEx</artifactId>
|
|
|
|
<groupId>ru.tehkode</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2014-12-05 06:04:00 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<version>10.0.1</version>
|
|
|
|
<scope>provided</scope>
|
2016-05-03 22:59:51 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>jsr305</artifactId>
|
|
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2014-12-05 06:04:00 +01:00
|
|
|
</dependency>
|
2014-10-25 20:22:41 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
2016-05-03 22:59:51 +02:00
|
|
|
<version>2.6.2</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2016-05-31 01:22:45 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.drtshock</groupId>
|
2018-03-02 03:54:14 +01:00
|
|
|
<artifactId>PlayerVaultsX</artifactId>
|
2018-03-02 20:40:30 +01:00
|
|
|
<version>4.0.4-SNAPSHOT</version>
|
2018-02-13 01:45:41 +01:00
|
|
|
<scope>provided</scope>
|
2016-05-31 01:22:45 +02:00
|
|
|
</dependency>
|
2017-12-31 03:44:42 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>me.clip</groupId>
|
|
|
|
<artifactId>placeholderapi</artifactId>
|
|
|
|
<version>2.8.2</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2018-01-07 01:56:43 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>be.maximvdw</groupId>
|
|
|
|
<artifactId>MVdWPlaceholderAPI</artifactId>
|
|
|
|
<version>2.2.3-SNAPSHOT</version>
|
2018-02-13 01:45:41 +01:00
|
|
|
<scope>provided</scope>
|
2018-01-07 01:56:43 +01:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2014-04-04 20:53:42 +02:00
|
|
|
</dependencies>
|
2014-04-04 21:35:35 +02:00
|
|
|
|
2014-04-04 20:53:42 +02:00
|
|
|
<repositories>
|
2014-04-04 21:35:35 +02:00
|
|
|
<repository>
|
2014-10-09 18:04:11 +02:00
|
|
|
<id>vault-repo</id>
|
2016-08-12 01:16:46 +02:00
|
|
|
<url>http://nexus.hc.to/content/repositories/pub_releases</url>
|
2014-04-04 21:35:35 +02:00
|
|
|
</repository>
|
2014-05-19 18:44:15 +02:00
|
|
|
<repository>
|
|
|
|
<id>ess-repo</id>
|
2017-12-19 10:14:57 +01:00
|
|
|
<url>http://ci.ender.zone/plugin/repository/everything/</url>
|
2014-05-19 18:44:15 +02:00
|
|
|
</repository>
|
2014-04-04 20:53:42 +02:00
|
|
|
<repository>
|
2015-02-12 16:21:17 +01:00
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
|
2014-04-04 20:53:42 +02:00
|
|
|
</repository>
|
2014-04-05 22:42:01 +02:00
|
|
|
<repository>
|
|
|
|
<id>maven.sk89q.com</id>
|
|
|
|
<url>http://maven.sk89q.com/repo/</url>
|
|
|
|
</repository>
|
2014-12-05 06:04:00 +01:00
|
|
|
<repository>
|
|
|
|
<id>repo.mikeprimm.com</id>
|
|
|
|
<url>http://repo.mikeprimm.com/</url>
|
|
|
|
</repository>
|
2017-12-31 03:44:42 +01:00
|
|
|
<repository>
|
|
|
|
<id>placeholderapi</id>
|
|
|
|
<url>http://repo.extendedclip.com/content/repositories/placeholderapi/</url>
|
|
|
|
</repository>
|
2018-01-07 01:56:43 +01:00
|
|
|
<repository>
|
|
|
|
<id>mvdw-software</id>
|
|
|
|
<url>http://repo.mvdw-software.be/content/groups/public/</url>
|
|
|
|
</repository>
|
2014-04-04 20:53:42 +02:00
|
|
|
</repositories>
|
|
|
|
</project>
|