2019-08-27 01:58:18 +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>
|
|
|
|
|
|
|
|
|
|
<artifactId>Yum</artifactId>
|
2020-03-25 07:46:54 +00:00
|
|
|
|
<version>2.9.1</version>
|
2019-08-27 01:58:18 +00:00
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
|
|
<description>Minecraft 服务器插件管理系统</description>
|
|
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>pw.yumc</groupId>
|
|
|
|
|
<artifactId>minecraft-plugin-parent</artifactId>
|
|
|
|
|
<version>1.0</version>
|
|
|
|
|
<relativePath/>
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<properties>
|
2020-03-25 07:46:54 +00:00
|
|
|
|
<update.description>§a补丁包 2.9.1 版本</update.description>
|
2019-08-27 01:58:18 +00:00
|
|
|
|
<update.changes>
|
2020-03-25 07:46:54 +00:00
|
|
|
|
§620-03-25 §cfix: paper HikariPool error;
|
2019-10-01 17:12:04 +00:00
|
|
|
|
§619-09-30 §cfix: tabComplete error;
|
2019-08-28 03:30:19 +00:00
|
|
|
|
§619-08-28 §cfix: knownCommands not compatible;
|
|
|
|
|
§cfix: async event on primary thread;
|
2019-08-27 01:58:18 +00:00
|
|
|
|
§619-08-26 §cfix: 修复不兼容 1.14.4 的问题;
|
|
|
|
|
§619-02-23 §cfix: 修复不兼容 1.13 的问题;
|
|
|
|
|
</update.changes>
|
|
|
|
|
<update.changelog>
|
|
|
|
|
§617-07-29 §cfix: 修复不兼容 1.12 的问题;
|
|
|
|
|
§6- §cfix: §7修复仓库数据读取错误的问题;
|
|
|
|
|
§6- §cfix: §7修复一个tab补全产生的错误
|
|
|
|
|
§6- §btip: §a本插件最后一次更新 2.7.8 版本;
|
|
|
|
|
§6- §afeat: §7线程中断只显示一次调试信息;
|
|
|
|
|
§6- §afeat: §7更新线程检查 添加调试;
|
|
|
|
|
§6- §afeat: §7修改显示前缀;
|
|
|
|
|
§6- §afeat: §7更新类库版本 完善网络调试;
|
|
|
|
|
§6- §drefactor: §7使用新类库;
|
|
|
|
|
§6- §afeat: §7使用新版本API;
|
|
|
|
|
§6- §afeat: §7去除加载器注入 异步获取主线程;
|
|
|
|
|
§6- §afeat: §7添加网络状态详细错误;
|
|
|
|
|
§6- §afeat: §7新增307跳转支持;
|
|
|
|
|
§6- §cfix: §7修复lasterror命令显示问题;
|
|
|
|
|
§6- §afeat: §7使用SimpleJson解析仓库数据;
|
|
|
|
|
§6- §afeat: §7使用新的类库处理Tellraw;
|
|
|
|
|
§6- §cfix: §7当仓库未找到插件时没有提示的BUG;
|
|
|
|
|
</update.changelog>
|
|
|
|
|
<env.GIT_COMMIT>DEV</env.GIT_COMMIT>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>pw.yumc</groupId>
|
|
|
|
|
<artifactId>BukkitInjectedTools</artifactId>
|
|
|
|
|
<type>jar</type>
|
|
|
|
|
<version>[1.1,)</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</project>
|