2015-05-27 11:17:48 +00: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>
|
2015-09-01 09:26:17 +00:00
|
|
|
<groupId>cn.citycraft</groupId>
|
2015-05-27 11:17:48 +00:00
|
|
|
<artifactId>Residence</artifactId>
|
2015-10-02 12:19:33 +00:00
|
|
|
<version>2.8.0.3</version>
|
2015-05-27 11:17:48 +00:00
|
|
|
<name>Residence</name>
|
2015-09-24 12:40:33 +00:00
|
|
|
<description>重制版本的领地插件 - 喵♂呜</description>
|
2015-05-27 11:17:48 +00:00
|
|
|
<build>
|
2015-05-28 22:30:16 +00:00
|
|
|
<finalName>${project.name}</finalName>
|
2015-09-15 02:01:12 +00:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2015-05-27 11:17:48 +00:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.1</version>
|
|
|
|
<configuration>
|
2015-09-26 13:58:00 +00:00
|
|
|
<source>1.7</source>
|
|
|
|
<target>1.7</target>
|
2015-05-27 11:17:48 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2015-09-15 02:01:12 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>2.3</version>
|
|
|
|
<configuration>
|
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
|
|
<minimizeJar>true</minimizeJar>
|
|
|
|
<artifactSet>
|
|
|
|
<includes>
|
|
|
|
<include>cn.citycraft:PluginHelper</include>
|
|
|
|
</includes>
|
|
|
|
</artifactSet>
|
|
|
|
<relocation>
|
|
|
|
<pattern>cn.citycraft.PluginHelper</pattern>
|
|
|
|
<shadedPattern>${project.groupId}.${project.artifactId}</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2015-05-27 11:17:48 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
|
|
|
|
</repository>
|
2015-09-22 08:23:55 +00:00
|
|
|
<repository>
|
2015-10-02 12:14:52 +00:00
|
|
|
<id>sumcraft-repo</id>
|
|
|
|
<url>http://ci.sumcraft.net:8080/plugin/repository/everything/</url>
|
2015-09-22 08:23:55 +00:00
|
|
|
</repository>
|
2015-05-27 11:17:48 +00:00
|
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
|
|
|
<type>jar</type>
|
2015-10-02 12:14:52 +00:00
|
|
|
<version>1.8.8-R0.1-SNAPSHOT</version>
|
2015-05-27 11:17:48 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.earth2me</groupId>
|
|
|
|
<artifactId>essentials</artifactId>
|
|
|
|
<version>2.9.6</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${project.basedir}/lib/Essentials.jar</systemPath>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.milkbowl.vault</groupId>
|
|
|
|
<artifactId>VaultAPI</artifactId>
|
|
|
|
<version>1.5</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${project.basedir}/lib/Vault.jar</systemPath>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sk89q</groupId>
|
|
|
|
<artifactId>WorldEdit</artifactId>
|
|
|
|
<version>5.4.5</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${project.basedir}/lib/WorldEdit.jar</systemPath>
|
|
|
|
</dependency>
|
2015-09-15 02:01:12 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.citycraft</groupId>
|
|
|
|
<artifactId>PluginHelper</artifactId>
|
|
|
|
<type>jar</type>
|
|
|
|
<version>1.0</version>
|
|
|
|
</dependency>
|
2015-05-27 11:17:48 +00:00
|
|
|
</dependencies>
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
2015-05-27 10:06:22 +00:00
|
|
|
</project>
|