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>
|
2015-01-19 23:05:41 +01:00
|
|
|
<version>1.6.9.5-U0.1.15-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>
|
|
|
|
<finalName>Factions</finalName>
|
|
|
|
<sourceDirectory>${basedir}/src/main/java</sourceDirectory>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<targetPath>.</targetPath>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<directory>${basedir}/src/main/resources/</directory>
|
|
|
|
<includes>
|
|
|
|
<include>*.yml</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>2.3.2</version>
|
|
|
|
<configuration>
|
2014-04-15 21:19:00 +02:00
|
|
|
<source>1.6</source>
|
|
|
|
<target>1.6</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>
|
|
|
|
<version>2.2</version>
|
|
|
|
<configuration>
|
2014-11-02 20:15:11 +01:00
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
2014-10-13 21:10:18 +02:00
|
|
|
<artifactSet>
|
|
|
|
<includes>
|
|
|
|
<include>mkremins:fanciful</include>
|
2014-10-25 20:22:41 +02:00
|
|
|
<include>com.google.code.gson:gson</include>
|
2014-10-13 21:10:18 +02:00
|
|
|
</includes>
|
|
|
|
</artifactSet>
|
|
|
|
<relocations>
|
|
|
|
<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>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
2014-10-25 21:05:23 +02:00
|
|
|
<version>1.7.9-R0.2</version>
|
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>
|
2014-12-15 07:46:20 +01:00
|
|
|
<version>1.5</version>
|
2014-04-04 21:35:35 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2014-04-05 22:42:01 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.sk89q</groupId>
|
|
|
|
<artifactId>worldguard</artifactId>
|
2015-01-15 20:29:14 +01:00
|
|
|
<version>6.0.0-SNAPSHOT</version>
|
2014-04-05 22:42:01 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sk89q</groupId>
|
|
|
|
<artifactId>worldedit</artifactId>
|
2015-01-15 20:29:14 +01:00
|
|
|
<version>6.0.0-SNAPSHOT</version>
|
2014-04-05 22:42:01 +02:00
|
|
|
</dependency>
|
2014-05-19 18:44:15 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.ess3</groupId>
|
|
|
|
<artifactId>Essentials</artifactId>
|
2014-05-19 18:52:57 +02:00
|
|
|
<version>LATEST</version>
|
2014-05-19 18:44:15 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2014-07-08 20:54:22 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.ess3</groupId>
|
|
|
|
<artifactId>EssentialsChat</artifactId>
|
|
|
|
<version>LATEST</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2014-10-13 21:10:18 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>mkremins</groupId>
|
|
|
|
<artifactId>fanciful</artifactId>
|
2014-12-07 01:08:53 +01:00
|
|
|
<version>0.2.1-SNAPSHOT</version>
|
2014-10-13 21:10: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>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<version>10.0.1</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2014-10-25 20:22:41 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
<version>2.1</version>
|
|
|
|
</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>
|
|
|
|
<url>http://nexus.theyeticave.net/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>
|
2014-12-21 17:35:53 +01:00
|
|
|
<url>http://repo.ess3.net/content/repositories/essdev</url>
|
2014-05-19 18:44:15 +02:00
|
|
|
</repository>
|
2014-04-04 20:53:42 +02:00
|
|
|
<repository>
|
|
|
|
<id>bukkit-repo</id>
|
|
|
|
<url>http://repo.bukkit.org/content/groups/public/</url>
|
|
|
|
</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>
|
2015-01-05 16:34:16 +01:00
|
|
|
<repository>
|
|
|
|
<id>franga2000-repo</id>
|
|
|
|
<url>http://repo.franga2000.com/artifactory/public</url>
|
|
|
|
</repository>
|
2014-04-04 20:53:42 +02:00
|
|
|
</repositories>
|
|
|
|
</project>
|