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-11-11 08:10:00 +00:00
|
|
|
<version>1.9.5</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>
|
2016-09-13 18:05:58 +00:00
|
|
|
<include>pw.yumc:YumCore</include>
|
2015-10-04 12:14:29 +00:00
|
|
|
</includes>
|
|
|
|
</artifactSet>
|
|
|
|
<relocations>
|
|
|
|
<relocation>
|
2016-09-13 18:05:58 +00:00
|
|
|
<pattern>pw.yumc.YumCore</pattern>
|
2015-10-04 12:14:29 +00:00
|
|
|
<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-11-11 08:10:00 +00:00
|
|
|
<update.description>§a全新版本 §c虚拟悬浮物(橙子提供 对 就是那个汉化COI的逗比)§e7老板修复逗比BUG...</update.description>
|
2016-03-03 12:56:24 +00:00
|
|
|
<update.changes>
|
2016-11-11 08:10:00 +00:00
|
|
|
§b1.9.5 - §a1.10+兼容虚拟悬浮物...;
|
|
|
|
§b1.9.4 - §a1.9+兼容虚拟悬浮物...;
|
|
|
|
§b1.9.3 - §a木牌第一行显示配置文件的guititle内容...;
|
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-09-13 18:05:58 +00:00
|
|
|
<version>1.10.2-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>
|
2016-09-13 18:05:58 +00:00
|
|
|
<groupId>pw.yumc</groupId>
|
|
|
|
<artifactId>YumCore</artifactId>
|
2016-04-14 05:44:47 +00:00
|
|
|
<type>jar</type>
|
2016-11-11 08:10:00 +00:00
|
|
|
<version>1.1</version>
|
2016-04-14 05:44:47 +00:00
|
|
|
</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-09-13 18:05:58 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.comphenix.protocol</groupId>
|
|
|
|
<artifactId>ProtocolLib</artifactId>
|
|
|
|
<version>4.1</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${project.basedir}/lib/ProtocolLib-4.1.jar</systemPath>
|
2016-01-14 11:55:44 +00:00
|
|
|
</dependency>
|
2015-10-04 12:14:29 +00:00
|
|
|
</dependencies>
|
2015-07-05 14:05:58 +00:00
|
|
|
</project>
|