2015-04-29 02:04:46 +00:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2015-04-29 02:41:14 +00:00
|
|
|
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>
|
|
|
|
<groupId>com.me.tft_02.soulbound</groupId>
|
|
|
|
<artifactId>Soulbound</artifactId>
|
2015-12-09 08:27:09 +00:00
|
|
|
<version>1.3</version>
|
2015-04-29 02:41:14 +00:00
|
|
|
<name>Soulbound</name>
|
2015-11-24 05:41:56 +00:00
|
|
|
<description>Soulbound items for your RPG servers!</description>
|
2015-04-29 02:41:14 +00:00
|
|
|
<url>https://github.com/TfT-02/Soulbound</url>
|
|
|
|
<issueManagement>
|
|
|
|
<system>GitHub</system>
|
|
|
|
<url>https://github.com/TfT-02/Soulbound/issues</url>
|
|
|
|
</issueManagement>
|
|
|
|
<build>
|
2015-05-28 22:21:05 +00:00
|
|
|
<finalName>${project.name}</finalName>
|
2015-04-29 02:41:14 +00:00
|
|
|
<resources>
|
|
|
|
<resource>
|
2015-09-28 13:06:34 +00:00
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
2015-04-29 02:41:14 +00:00
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2015-07-17 06:24:25 +00:00
|
|
|
<version>3.1</version>
|
2015-04-29 02:41:14 +00:00
|
|
|
<configuration>
|
2015-07-17 06:24:25 +00:00
|
|
|
<source>1.7</source>
|
|
|
|
<target>1.7</target>
|
2015-04-29 02:41:14 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2015-09-28 13:06:34 +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>
|
|
|
|
<relocations>
|
|
|
|
<relocation>
|
|
|
|
<pattern>cn.citycraft.PluginHelper</pattern>
|
|
|
|
<shadedPattern>${project.groupId}.${project.artifactId}</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
</relocations>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2015-04-29 02:41:14 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2015-11-24 08:34:50 +00:00
|
|
|
<properties>
|
|
|
|
<jenkins.url>http://ci.citycraft.cn:8080</jenkins.url>
|
2015-12-09 08:27:09 +00:00
|
|
|
<env.BUILD_NUMBER>Debug</env.BUILD_NUMBER>
|
|
|
|
<update.description>&c修复Prevent_Item_Drop设置为TRUE时死亡物品消失的问题...</update.description>
|
2015-11-24 08:34:50 +00:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
2015-04-29 02:41:14 +00:00
|
|
|
<repositories>
|
2015-09-28 13:06:34 +00:00
|
|
|
<repository>
|
2015-12-09 08:27:09 +00:00
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
|
2015-09-28 13:06:34 +00:00
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>citycraft-repo</id>
|
2015-12-09 08:27:09 +00:00
|
|
|
<url>${jenkins.url}/plugin/repository/everything/</url>
|
2015-04-29 02:41:14 +00:00
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2015-07-17 06:24:25 +00:00
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
2015-04-29 02:41:14 +00:00
|
|
|
<type>jar</type>
|
2015-12-09 08:27:09 +00:00
|
|
|
<version>1.8.8-R0.1-SNAPSHOT</version>
|
2015-04-29 02:41:14 +00:00
|
|
|
</dependency>
|
2015-09-28 13:06:34 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.citycraft</groupId>
|
|
|
|
<artifactId>PluginHelper</artifactId>
|
|
|
|
<type>jar</type>
|
|
|
|
<version>1.0</version>
|
|
|
|
</dependency>
|
2015-04-29 02:41:14 +00:00
|
|
|
</dependencies>
|
2015-04-29 02:04:46 +00:00
|
|
|
</project>
|