mirror of
https://e.coding.net/circlecloud/Yum.git
synced 2024-11-01 04:38:47 +00:00
110 lines
3.5 KiB
XML
110 lines
3.5 KiB
XML
<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>pw.yumc</groupId>
|
|
<artifactId>Yum</artifactId>
|
|
<version>2.4.1</version>
|
|
<name>Yum</name>
|
|
<description>Minecraft 服务器插件管理系统</description>
|
|
<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>
|
|
<ciManagement>
|
|
<system>Jenkins</system>
|
|
<url>http://ci.yumc.pw/job/${project.artifactId}/</url>
|
|
</ciManagement>
|
|
<properties>
|
|
<update.description>&a全新 2.X 版本 更多守护与优化</update.description>
|
|
<update.changes>
|
|
&b2.4.1 &6- &c修复reload命令报错的问题...;
|
|
&b2.4 &6- &c修复重载插件导致线程安全错误的问题...;
|
|
&b2.3 &6- &a网络监控添加域名白名单功能...;
|
|
&b2.2 &6- &b新增线程安全拦截 主线程IO拦截...;
|
|
&b2.1 &6- &e新增网络管理 防止主线程卡IO...;
|
|
&b &6- &d新增安全管理系统(需要&dbBukkitInjectedTools&d)...;
|
|
</update.changes>
|
|
<env.GIT_COMMIT>DEBUG</env.GIT_COMMIT>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
<repositories>
|
|
<repository>
|
|
<id>spigot-repo</id>
|
|
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>yumc-repo</id>
|
|
<url>http://repo.yumc.pw/content/groups/public/</url>
|
|
</repository>
|
|
</repositories>
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>jtb</id>
|
|
<name>YUMC</name>
|
|
<url>http://repo.yumc.pw/content/repositories/yumcenter/</url>
|
|
</repository>
|
|
</distributionManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.spigotmc</groupId>
|
|
<artifactId>spigot-api</artifactId>
|
|
<type>jar</type>
|
|
<version>1.9-R0.1-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.citycraft</groupId>
|
|
<artifactId>PluginHelper</artifactId>
|
|
<type>jar</type>
|
|
<version>1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>pw.yumc</groupId>
|
|
<artifactId>BukkitInjectedTools</artifactId>
|
|
<type>jar</type>
|
|
<version>1.0</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |