2015-08-21 10:53:28 +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>
|
2016-03-16 09:14:59 +00:00
|
|
|
<groupId>pw.yumc</groupId>
|
2015-08-21 10:53:28 +00:00
|
|
|
<artifactId>Yum</artifactId>
|
2016-07-18 16:37:04 +00:00
|
|
|
<version>2.6.4</version>
|
2015-08-21 10:53:28 +00:00
|
|
|
<name>Yum</name>
|
2015-08-31 13:28:02 +00:00
|
|
|
<description>Minecraft 服务器插件管理系统</description>
|
2015-08-24 04:26:41 +00:00
|
|
|
<build>
|
|
|
|
<finalName>${project.name}</finalName>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2015-09-06 03:25:25 +00:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.1</version>
|
|
|
|
<configuration>
|
2015-09-26 14:58:00 +00:00
|
|
|
<source>1.7</source>
|
|
|
|
<target>1.7</target>
|
2015-09-06 03:25:25 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>2.3</version>
|
|
|
|
<configuration>
|
2015-09-06 03:29:18 +00:00
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
2015-09-06 03:25:25 +00:00
|
|
|
<minimizeJar>true</minimizeJar>
|
|
|
|
<artifactSet>
|
|
|
|
<includes>
|
|
|
|
<include>cn.citycraft:PluginHelper</include>
|
|
|
|
</includes>
|
|
|
|
</artifactSet>
|
2015-09-15 01:26:31 +00:00
|
|
|
<relocations>
|
|
|
|
<relocation>
|
|
|
|
<pattern>cn.citycraft.PluginHelper</pattern>
|
|
|
|
<shadedPattern>${project.groupId}.${project.artifactId}</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
</relocations>
|
2015-09-06 03:25:25 +00:00
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2015-08-24 04:26:41 +00:00
|
|
|
</build>
|
2016-03-16 09:14:59 +00:00
|
|
|
<ciManagement>
|
|
|
|
<system>Jenkins</system>
|
2016-03-16 09:23:23 +00:00
|
|
|
<url>http://ci.yumc.pw/job/${project.artifactId}/</url>
|
2016-03-16 09:14:59 +00:00
|
|
|
</ciManagement>
|
2015-10-21 12:08:40 +00:00
|
|
|
<properties>
|
2016-06-29 12:38:51 +00:00
|
|
|
<update.description>&a全新 2.X 版本 更多守护与优化</update.description>
|
2016-03-01 12:48:47 +00:00
|
|
|
<update.changes>
|
2016-07-18 16:37:04 +00:00
|
|
|
&b2.6.4 &6- &e添加从&bBukkitDev&e下载和更新...;
|
2016-07-18 02:42:45 +00:00
|
|
|
&b2.6.3 &6- &a注入操作延时执行 防止部分任务未注册 添加手动注入...;
|
2016-07-16 14:24:43 +00:00
|
|
|
&b2.6.2 &6- &d能耗监控添加忽略列表 &3详见monitor.yml...;
|
2016-07-15 09:03:00 +00:00
|
|
|
&b2.6.1 &6- &c优化能耗监控 命令别名修改为mi(防止与ESS冲突)...;
|
2016-03-01 12:48:47 +00:00
|
|
|
</update.changes>
|
2016-02-19 01:47:16 +00:00
|
|
|
<env.GIT_COMMIT>DEBUG</env.GIT_COMMIT>
|
2015-10-21 12:08:40 +00:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
2015-08-21 10:53:28 +00:00
|
|
|
<repositories>
|
2016-06-29 11:27:00 +00:00
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
|
|
|
|
</repository>
|
2016-03-15 11:49:10 +00:00
|
|
|
<repository>
|
|
|
|
<id>yumc-repo</id>
|
|
|
|
<url>http://repo.yumc.pw/content/groups/public/</url>
|
|
|
|
</repository>
|
2015-08-21 10:53:28 +00:00
|
|
|
</repositories>
|
2016-03-15 11:49:10 +00:00
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>jtb</id>
|
|
|
|
<name>YUMC</name>
|
|
|
|
<url>http://repo.yumc.pw/content/repositories/yumcenter/</url>
|
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
2015-08-21 10:53:28 +00:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
|
|
|
<type>jar</type>
|
2016-07-13 11:38:10 +00:00
|
|
|
<version>1.10.2-R0.1-SNAPSHOT</version>
|
2015-08-21 10:53:28 +00:00
|
|
|
</dependency>
|
2015-09-02 04:06:40 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>cn.citycraft</groupId>
|
|
|
|
<artifactId>PluginHelper</artifactId>
|
|
|
|
<type>jar</type>
|
|
|
|
<version>1.0</version>
|
|
|
|
</dependency>
|
2016-06-16 13:02:27 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>pw.yumc</groupId>
|
|
|
|
<artifactId>BukkitInjectedTools</artifactId>
|
|
|
|
<type>jar</type>
|
|
|
|
<version>1.0</version>
|
|
|
|
</dependency>
|
2015-08-21 10:53:28 +00:00
|
|
|
</dependencies>
|
|
|
|
</project>
|