17a95fc786
For players on versions earlier than 1.7.10, our usage of getOnlinePlayers() currently throws a NoSuchMethodError.
134 lines
4.2 KiB
XML
134 lines
4.2 KiB
XML
<?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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.massivecraft</groupId>
|
|
<artifactId>Factions</artifactId>
|
|
<name>Factions</name>
|
|
<version>1.6.9.5-U0.1.7</version>
|
|
<build>
|
|
<sourceDirectory>${basedir}/src/main/java</sourceDirectory>
|
|
<defaultGoal>clean package install</defaultGoal>
|
|
<resources>
|
|
<resource>
|
|
<targetPath>.</targetPath>
|
|
<filtering>true</filtering>
|
|
<directory>${basedir}/src/main/resources/</directory>
|
|
<includes>
|
|
<include>*.yml</include>
|
|
</includes>
|
|
</resource>
|
|
</resources>
|
|
<finalName>Factions</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>2.3.2</version>
|
|
<configuration>
|
|
<source>1.6</source>
|
|
<target>1.6</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>2.2</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<artifactSet>
|
|
<includes>
|
|
<include>mkremins:fanciful</include>
|
|
<include>com.google.code.gson:gson</include>
|
|
</includes>
|
|
</artifactSet>
|
|
<relocations>
|
|
<relocation>
|
|
<pattern>mkremins.fanciful</pattern>
|
|
<shadedPattern>com.massivecraft.factions.shade.mkremins.fanciful</shadedPattern>
|
|
</relocation>
|
|
<relocation>
|
|
<pattern>com.google</pattern>
|
|
<shadedPattern>com.massivecraft.factions.shade.com.google</shadedPattern>
|
|
</relocation>
|
|
</relocations>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<repositories>
|
|
<repository>
|
|
<id>vault-repo</id>
|
|
<url>http://nexus.theyeticave.net/content/repositories/pub_releases</url>
|
|
</repository>
|
|
<repository>
|
|
<id>ess-repo</id>
|
|
<url>http://repo.ess3.net/content/groups/public</url>
|
|
</repository>
|
|
<repository>
|
|
<id>bukkit-repo</id>
|
|
<url>http://repo.bukkit.org/content/groups/public/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>maven.sk89q.com</id>
|
|
<url>http://maven.sk89q.com/repo/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>fanciful-mvn-repo</id>
|
|
<url>https://github.com/mkremins/fanciful/mvn-repo/</url>
|
|
</repository>
|
|
</repositories>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>bukkit</artifactId>
|
|
<version>1.7.9-R0.2</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.milkbowl.vault</groupId>
|
|
<artifactId>VaultAPI</artifactId>
|
|
<version>1.4</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sk89q</groupId>
|
|
<artifactId>worldguard</artifactId>
|
|
<version>5.9</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sk89q</groupId>
|
|
<artifactId>worldedit</artifactId>
|
|
<version>5.6.3</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.ess3</groupId>
|
|
<artifactId>Essentials</artifactId>
|
|
<version>LATEST</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.ess3</groupId>
|
|
<artifactId>EssentialsChat</artifactId>
|
|
<version>LATEST</version>
|
|
<scope>provided</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>lombok</artifactId>
|
|
<groupId>org.projectlombok</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
</dependencies>
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
</project>
|
|
|