mirror of
https://e.coding.net/circlecloud/Residence.git
synced 2024-10-31 22:38:48 +00:00
121 lines
3.8 KiB
XML
121 lines
3.8 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>Residence</artifactId>
|
|
<version>2.8.2.3</version>
|
|
<name>Residence</name>
|
|
<description>重制版本的领地插件 - 喵♂呜</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>&6更新预告!!! GUI菜单即将上线(&7菜单再等几天= =&6)...</update.description>
|
|
<update.changes>
|
|
&b2.8.2.3 - &b修改包名 兼容部分老版本插件...;
|
|
&b2.8.2.2 - &e自动转换UUID版本Residence的数据(部分版本)...;
|
|
&c修复上个版本命令失效的问题(库文件忘了更新了);
|
|
&b2.8.2.1 - &c修复一个可能被熊孩子利用导致插件奔溃的BUG...;
|
|
</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>com.earth2me</groupId>
|
|
<artifactId>essentials</artifactId>
|
|
<version>2.9.6</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/Essentials.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.milkbowl.vault</groupId>
|
|
<artifactId>Vault</artifactId>
|
|
<version>1.5.6</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sk89q</groupId>
|
|
<artifactId>WorldEdit</artifactId>
|
|
<version>5.4.5</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/WorldEdit.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.citycraft</groupId>
|
|
<artifactId>PluginHelper</artifactId>
|
|
<type>jar</type>
|
|
<version>1.0</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |