2016-08-24 19:55:15 +00:00
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2017-09-14 12:41:34 +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>pw.yumc</groupId>
|
|
|
|
|
<artifactId>MiaoScript</artifactId>
|
2020-04-22 01:23:21 +00:00
|
|
|
|
<version>0.5.0</version>
|
2017-09-14 12:41:34 +00:00
|
|
|
|
<developers>
|
|
|
|
|
<developer>
|
|
|
|
|
<id>502647092</id>
|
|
|
|
|
<name>喵♂呜</name>
|
|
|
|
|
<email>admin@yumc.pw</email>
|
|
|
|
|
<url>http://www.yumc.pw</url>
|
|
|
|
|
</developer>
|
|
|
|
|
</developers>
|
|
|
|
|
<build>
|
|
|
|
|
<finalName>${project.artifactId}</finalName>
|
|
|
|
|
<resources>
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/resources</directory>
|
2017-11-15 12:55:13 +00:00
|
|
|
|
<excludes>
|
2019-08-29 02:08:29 +00:00
|
|
|
|
<exclude>dev-plugins/**</exclude>
|
2017-11-15 12:55:13 +00:00
|
|
|
|
</excludes>
|
2017-09-14 12:41:34 +00:00
|
|
|
|
<filtering>true</filtering>
|
|
|
|
|
</resource>
|
|
|
|
|
</resources>
|
2019-08-31 02:42:21 +00:00
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
|
<version>3.2.1</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
|
|
|
<artifactSet>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>org.kamranzafar:jtar</include>
|
|
|
|
|
</includes>
|
|
|
|
|
</artifactSet>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>shade</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
2017-09-14 12:41:34 +00:00
|
|
|
|
</build>
|
|
|
|
|
<ciManagement>
|
|
|
|
|
<system>Jenkins</system>
|
2020-03-02 17:07:12 +00:00
|
|
|
|
<url>https://ci.yumc.pw/job/Minecraft/job/${project.artifactId}/</url>
|
2017-09-14 12:41:34 +00:00
|
|
|
|
</ciManagement>
|
|
|
|
|
<properties>
|
|
|
|
|
<env.GIT_COMMIT>DEV</env.GIT_COMMIT>
|
2017-10-16 05:29:00 +00:00
|
|
|
|
<update.changes>
|
2020-04-22 01:23:21 +00:00
|
|
|
|
§620-04-10 §afeat: 默认从 classpath 加载内建的js模块;
|
2020-04-07 14:20:53 +00:00
|
|
|
|
§620-04-07 §afeat: 默认初始化 内建 nodejs 模块;
|
2020-04-03 07:07:05 +00:00
|
|
|
|
§620-04-03 §afeat: 优化 框架卸载逻辑;
|
2020-03-31 08:55:18 +00:00
|
|
|
|
§620-03-31 §afeat: require 新增 内建 nodejs 模块;
|
2020-03-02 17:07:12 +00:00
|
|
|
|
§620-03-03 §afeat: require 新增 淘宝镜像源拉取;
|
2020-02-29 09:32:53 +00:00
|
|
|
|
§620-02-27 §afeat: 异步加载脚本引擎;
|
|
|
|
|
§620-02-25 §afeat: 新增 Nukkit 的支持;
|
2020-02-23 16:27:54 +00:00
|
|
|
|
§620-02-16 §afeat: 新增 Source Map 支持;
|
|
|
|
|
§620-02-02 §afeat: 迁移 ployfill 到 @ms/ployfill;
|
2020-01-17 01:17:13 +00:00
|
|
|
|
§620-01-14 §afeat: 新增 Bungee 支持;
|
2020-02-23 16:27:54 +00:00
|
|
|
|
§afeat: 新增 instance 实例获取
|
|
|
|
|
</update.changes>
|
|
|
|
|
<update.changelog>
|
2019-09-24 02:52:51 +00:00
|
|
|
|
§619-09-24 §cremove: 移除 okhttp3 类库;
|
|
|
|
|
§afeat: 新增require自动下载模块功能;
|
2019-09-23 01:02:34 +00:00
|
|
|
|
§619-09-21 §afeat: 新增 okhttp3 类库;
|
2020-02-23 16:27:54 +00:00
|
|
|
|
§619-08-31 §afeat: 新增 tar 类库 支持 tar.gz 解压;
|
2019-09-23 01:02:34 +00:00
|
|
|
|
§619-08-29 §erefactor: 移动插件文件 默认自带MSPM插件 优化bios;
|
2019-08-31 02:42:21 +00:00
|
|
|
|
§618-5-20 §afeat: 新增MiaoBoard插件;
|
|
|
|
|
§618-5-20 §afeat: 新增MiaoAuth插件;
|
|
|
|
|
§618-5-20 §afeat: 修改初始化函数名称;
|
|
|
|
|
§618-5-20 §cfix: file.js修复一个语法错误;
|
|
|
|
|
§618-5-20 §afeat: 新增config默认值绑定 匿名函数添加名称;
|
|
|
|
|
§618-5-20 §afeat: PAPI支持直接替换数组;
|
|
|
|
|
§618-5-20 §afeat: 调整Task任务模块;
|
|
|
|
|
§618-5-20 §afeat: 新增模板预编译插件功能;
|
|
|
|
|
§618-5-18 §afeat: 清除不必要的代码;
|
|
|
|
|
§618-5-17 §afeat: 新增MiaoChat插件描述;
|
|
|
|
|
§618-5-17 §afeat: MiaoScriptPackageManager 新增restart和run方法;
|
|
|
|
|
§618-5-17 §cfix: 修复Sponge命令参数存在空字符串的问题;
|
|
|
|
|
§618-5-17 §cfix: 修复混淆导致的重载方法丢失;
|
|
|
|
|
§618-5-17 §afeat: 新增引擎Shutdown方法 关闭资源;
|
|
|
|
|
§618-5-17 §afeat: 格式化代码 添加d.ts文件 去除引擎无关代码 清理单元测试;
|
|
|
|
|
§618-5-17 §cfix: 修复TellRaw类库错误;
|
|
|
|
|
§618-5-17 §cfix: 修复pkg不存在的问题;
|
|
|
|
|
§618-5-17 §cfix: 修复下载错误的问题;
|
|
|
|
|
§618-5-17 §afeat: 更新版本号;
|
2018-05-16 16:49:58 +00:00
|
|
|
|
§618-05-17 §afeat: 新增Hook提示;
|
|
|
|
|
§618-05-17 §afeat: 调整列表载入顺序;
|
|
|
|
|
§618-05-17 §afeat: 完善MiaoChat的PAPI的替换;
|
|
|
|
|
§618-05-17 §afeat: 完善服务获取类;
|
|
|
|
|
§618-05-17 §afeat: 新增PAPI代理类;
|
|
|
|
|
§618-05-17 §afeat: 去除调试代码;
|
|
|
|
|
§618-05-17 §afeat: 迁移配置 完善reload命令;
|
|
|
|
|
§618-05-15 §afeat: 分离TellRaw类库;
|
|
|
|
|
§618-05-15 §afeat: 完善MiaoChat的Bukkit版本;
|
|
|
|
|
§618-05-15 §afeat: 补全内部引入方法的参数;
|
|
|
|
|
§618-05-15 §afeat: 调整Event载入提示 完善Bukkit的聊天发送;
|
|
|
|
|
§618-05-15 §afeat: 调整API引入结构;
|
|
|
|
|
§618-05-15 §afeat: 新增MiaoChat插件;
|
|
|
|
|
§618-05-14 §afeat: 更新API相关类;
|
|
|
|
|
§618-05-14 §afeat: 调整相关API名称;
|
|
|
|
|
§618-05-14 §afeat: 新增Object.values垫片;
|
|
|
|
|
§618-05-14 §afeat: 新增工具类;
|
|
|
|
|
§618-05-14 §afeat: 更新MiaoScriptPackageManager;
|
|
|
|
|
§618-05-14 §cfix: 修复命令执行相关BUG;
|
|
|
|
|
§618-05-14 §afeat: 新增聊天相关API;
|
|
|
|
|
§618-05-14 §afeat: 优化方法调用;
|
|
|
|
|
§618-03-18 §afeat: 调整get方法 data 参数自动转query;
|
|
|
|
|
§618-03-18 §afeat: 优化插件代码结构;
|
|
|
|
|
§618-03-18 §cfix: 修复玩家人数获取错误 更新插件;
|
|
|
|
|
§618-01-11 §afeat: 更新http类库 server通过orElse返回undefined;
|
|
|
|
|
§618-01-11 §afeat: 更新基础类库;
|
|
|
|
|
§618-01-11 §afeat: 新增插件管理模块;
|
|
|
|
|
§618-01-10 §cfix: 修复主线程加载的BUG;
|
|
|
|
|
§618-01-10 §afeat: 修复fs相关BUG 优化插件加载 优化命令补全;
|
|
|
|
|
§618-01-10 §afeat: 更新.gitignore文件;
|
|
|
|
|
§618-01-10 §afeat: 新增案例插件 更新插件版本;
|
|
|
|
|
§618-01-09 §afeat: 优化API 修复http模块错误;
|
|
|
|
|
§618-01-09 §afeat: 更新 fs 类库 优化 require;
|
|
|
|
|
§618-01-09 §afeat: 安全起见暂时屏蔽load方法和disable方法;
|
|
|
|
|
§618-01-09 §cfix: 修复调试信息错误;
|
|
|
|
|
§618-01-08 §afeat: require新增基础目录api;
|
|
|
|
|
§618-01-08 §3doc: 新增README;
|
2018-05-20 03:31:19 +00:00
|
|
|
|
§618-01-08 §cfix: 修复重载命令无效的BUG;
|
2018-05-16 16:49:58 +00:00
|
|
|
|
§618-01-09 §afeat: 优化加载流程 完善事件注册;
|
|
|
|
|
§618-01-02 §afeat: 新增http网络访问模块;
|
|
|
|
|
§617-12-28 §afeat: 完善Sponge事件注册 新增player封装类;
|
2017-11-30 05:27:38 +00:00
|
|
|
|
§617-11-30 §afeat: 新增Sponge的兼容;
|
2017-11-02 17:38:04 +00:00
|
|
|
|
§617-11-03 §afeat: 新增抽奖插件;
|
|
|
|
|
§617-10-16 §cfix: 修复关闭MiaoScript时task异常;
|
2017-10-16 05:29:00 +00:00
|
|
|
|
§617-10-15 §6alpha: 第一个版本发布;
|
2018-01-09 12:22:24 +00:00
|
|
|
|
</update.changelog>
|
2017-09-14 12:41:34 +00:00
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
2019-02-23 15:51:04 +00:00
|
|
|
|
<repo.url>https://repo.yumc.pw</repo.url>
|
2017-09-14 12:41:34 +00:00
|
|
|
|
</properties>
|
|
|
|
|
<repositories>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>yumc-repo</id>
|
2019-02-23 15:51:04 +00:00
|
|
|
|
<url>${repo.url}/repository/maven-public/</url>
|
2017-09-14 12:41:34 +00:00
|
|
|
|
</repository>
|
2017-10-26 13:01:24 +00:00
|
|
|
|
<repository>
|
|
|
|
|
<id>sponge</id>
|
|
|
|
|
<url>https://repo.spongepowered.org/maven/</url>
|
|
|
|
|
</repository>
|
2017-09-14 12:41:34 +00:00
|
|
|
|
</repositories>
|
|
|
|
|
<pluginRepositories>
|
|
|
|
|
<pluginRepository>
|
|
|
|
|
<id>yumc-repo</id>
|
2019-02-23 15:51:04 +00:00
|
|
|
|
<url>${repo.url}/repository/maven-public/</url>
|
2017-09-14 12:41:34 +00:00
|
|
|
|
</pluginRepository>
|
|
|
|
|
</pluginRepositories>
|
|
|
|
|
<distributionManagement>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>jtb</id>
|
|
|
|
|
<name>YUMC</name>
|
2019-02-23 15:51:04 +00:00
|
|
|
|
<url>${repo.url}/repository/yumcenter/</url>
|
2017-09-14 12:41:34 +00:00
|
|
|
|
</repository>
|
|
|
|
|
</distributionManagement>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
2019-02-26 09:30:30 +00:00
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
<version>1.18.6</version>
|
|
|
|
|
</dependency>
|
2019-08-31 02:42:21 +00:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.kamranzafar</groupId>
|
|
|
|
|
<artifactId>jtar</artifactId>
|
|
|
|
|
<version>2.3</version>
|
|
|
|
|
</dependency>
|
2019-02-26 09:30:30 +00:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
|
<artifactId>spigot-api</artifactId>
|
2020-04-22 01:23:21 +00:00
|
|
|
|
<version>1.15.2-R0.1-SNAPSHOT</version>
|
2017-10-26 13:01:24 +00:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.spongepowered</groupId>
|
|
|
|
|
<artifactId>spongeapi</artifactId>
|
2019-02-26 09:30:30 +00:00
|
|
|
|
<version>7.1.0</version>
|
2017-09-14 12:41:34 +00:00
|
|
|
|
</dependency>
|
2020-01-17 01:17:13 +00:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.md-5</groupId>
|
|
|
|
|
<artifactId>bungeecord-api</artifactId>
|
2020-04-22 01:23:21 +00:00
|
|
|
|
<version>1.15-SNAPSHOT</version>
|
2020-01-17 01:17:13 +00:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.nukkit</groupId>
|
|
|
|
|
<artifactId>nukkit</artifactId>
|
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
</dependency>
|
2017-09-14 12:41:34 +00:00
|
|
|
|
</dependencies>
|
2016-08-24 19:55:15 +00:00
|
|
|
|
</project>
|