2015-10-04 12:14:29 +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>
|
|
|
|
<groupId>org.maxgamer</groupId>
|
|
|
|
<artifactId>QuickShop</artifactId>
|
2016-06-06 12:32:33 +00:00
|
|
|
<version>1.9.0</version>
|
2015-10-21 01:52:15 +00:00
|
|
|
<description>快捷商店重置版本...</description>
|
2015-10-04 12:14:29 +00:00
|
|
|
<build>
|
|
|
|
<finalName>${project.name}</finalName>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.1</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.7</source>
|
|
|
|
<target>1.7</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<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>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2016-03-23 15:00:56 +00:00
|
|
|
<ciManagement>
|
|
|
|
<system>Jenkins</system>
|
|
|
|
<url>http://ci.yumc.pw/job/${project.artifactId}/</url>
|
|
|
|
</ciManagement>
|
2015-10-21 01:52:15 +00:00
|
|
|
<properties>
|
2016-01-20 12:54:26 +00:00
|
|
|
<env.GIT_COMMIT>DEBUG</env.GIT_COMMIT>
|
2016-03-15 11:46:30 +00:00
|
|
|
<update.description>&a全新版本 &c虚拟悬浮物(橙子提供 对 就是那个汉化COI的逗比)&e7老板修复逗比BUG...</update.description>
|
2016-03-03 12:56:24 +00:00
|
|
|
<update.changes>
|
2016-06-06 12:32:33 +00:00
|
|
|
&b1.9.0 - &c修复1.9开始以后不允许异步更新木牌的问题...;
|
2016-04-14 05:44:47 +00:00
|
|
|
&b1.8.9 - &c修复虚拟物品产生的异常...;
|
2016-04-04 11:07:26 +00:00
|
|
|
&b1.8.8 - &c修复异步处理购买事件导致的状态错误...;
|
|
|
|
- &c修复配置文件部分字段不存在导致的报错...;
|
2016-02-19 01:34:48 +00:00
|
|
|
</update.changes>
|
2015-10-21 01:52:15 +00:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
2016-03-23 15:00:56 +00:00
|
|
|
<repositories>
|
2015-10-04 12:14:29 +00:00
|
|
|
<repository>
|
2016-03-05 14:22:15 +00:00
|
|
|
<id>yumc-repo</id>
|
2016-03-23 15:00:56 +00:00
|
|
|
<url>http://repo.yumc.pw/content/groups/public/</url>
|
2015-10-04 12:14:29 +00:00
|
|
|
</repository>
|
2016-03-23 15:00:56 +00:00
|
|
|
</repositories>
|
|
|
|
<distributionManagement>
|
2015-10-04 12:14:29 +00:00
|
|
|
<repository>
|
2016-03-23 15:00:56 +00:00
|
|
|
<id>jtb</id>
|
|
|
|
<name>YUMC</name>
|
|
|
|
<url>http://repo.yumc.pw/content/repositories/yumcenter/</url>
|
2015-10-04 12:14:29 +00:00
|
|
|
</repository>
|
2016-03-23 15:00:56 +00:00
|
|
|
</distributionManagement>
|
2015-10-04 12:14:29 +00:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
|
|
|
<type>jar</type>
|
2016-03-05 12:53:35 +00:00
|
|
|
<version>1.9-R0.1-SNAPSHOT</version>
|
2015-10-04 12:14:29 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.milkbowl.vault</groupId>
|
2016-03-31 00:56:28 +00:00
|
|
|
<artifactId>Vault</artifactId>
|
|
|
|
<type>jar</type>
|
2016-03-05 12:53:35 +00:00
|
|
|
<version>1.5.6</version>
|
2015-10-04 12:14:29 +00:00
|
|
|
</dependency>
|
2016-04-14 05:44:47 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.citycraft</groupId>
|
|
|
|
<artifactId>PluginHelper</artifactId>
|
|
|
|
<type>jar</type>
|
|
|
|
<version>1.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.github.Cnly.WowSuchCleaner</groupId>
|
|
|
|
<artifactId>WowSuchCleaner</artifactId>
|
|
|
|
<version>1.6.5</version>
|
|
|
|
</dependency>
|
2015-10-04 12:14:29 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.sk89q</groupId>
|
|
|
|
<artifactId>WorldEdit</artifactId>
|
|
|
|
<version>5.4.5</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${project.basedir}/lib/WorldEdit.jar</systemPath>
|
|
|
|
</dependency>
|
2016-01-14 11:55:44 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.comphenix.protocol</groupId>
|
|
|
|
<artifactId>ProtocolLib</artifactId>
|
|
|
|
<version>3.6.5-SNAPSHOT</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${project.basedir}/lib/ProtocolLib-3.6.5-SNAPSHOT.jar</systemPath>
|
|
|
|
</dependency>
|
2015-10-04 12:14:29 +00:00
|
|
|
</dependencies>
|
2015-07-05 14:05:58 +00:00
|
|
|
</project>
|