2016-09-05 07:59:11 +00:00
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2016-12-05 11:45:41 +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>MiaoChat</artifactId>
|
2017-07-25 15:48:24 +00:00
|
|
|
|
<version>1.8.5</version>
|
2016-12-05 11:45:41 +00:00
|
|
|
|
<build>
|
|
|
|
|
<finalName>${project.name}</finalName>
|
|
|
|
|
<resources>
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
|
<filtering>true</filtering>
|
|
|
|
|
</resource>
|
|
|
|
|
</resources>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2017-03-28 02:02:03 +00:00
|
|
|
|
<version>2.4.3</version>
|
2016-12-05 11:45:41 +00:00
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>shade</goal>
|
|
|
|
|
</goals>
|
2017-03-28 02:02:03 +00:00
|
|
|
|
<configuration>
|
|
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
|
|
|
|
<minimizeJar>true</minimizeJar>
|
|
|
|
|
<artifactSet>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>pw.yumc:YumCore</include>
|
|
|
|
|
</includes>
|
|
|
|
|
</artifactSet>
|
|
|
|
|
<relocations>
|
|
|
|
|
<relocation>
|
|
|
|
|
<pattern>pw.yumc.YumCore</pattern>
|
|
|
|
|
<shadedPattern>${project.groupId}.${project.artifactId}</shadedPattern>
|
|
|
|
|
</relocation>
|
|
|
|
|
</relocations>
|
|
|
|
|
</configuration>
|
2016-12-05 11:45:41 +00:00
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>com.github.wvengen</groupId>
|
|
|
|
|
<artifactId>proguard-maven-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>proguard</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<options>
|
|
|
|
|
<option>-repackageclasses \ʼ.ʽ.ʾ.${project.artifactId}</option>
|
|
|
|
|
<option>-keep class ${project.groupId}.${project.artifactId}.${project.artifactId}</option>
|
|
|
|
|
<option>-keep class ${project.groupId}.${project.artifactId}.${project.artifactId}Bungee</option>
|
|
|
|
|
</options>
|
|
|
|
|
<libs>
|
|
|
|
|
<lib>${java.home}/lib/rt.jar</lib>
|
|
|
|
|
</libs>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
<ciManagement>
|
|
|
|
|
<system>Jenkins</system>
|
|
|
|
|
<url>http://ci.yumc.pw/job/${project.artifactId}/</url>
|
|
|
|
|
</ciManagement>
|
|
|
|
|
<properties>
|
2017-07-25 15:48:24 +00:00
|
|
|
|
<update.description>§a正式版本 §bv1.8.5</update.description>
|
2017-04-07 13:46:00 +00:00
|
|
|
|
<update.changes>
|
2017-07-25 08:48:37 +00:00
|
|
|
|
§617-07-25 §c修复: 类库版本错误;
|
2017-07-24 15:51:35 +00:00
|
|
|
|
§617-07-24 §c修复: 兼容 1.12 版本;
|
2017-05-21 04:03:36 +00:00
|
|
|
|
§617-05-21 §c修复: BungeeCord未分配分组时报错;
|
2017-04-07 13:46:00 +00:00
|
|
|
|
§617-04-07 §c修复: 控制台重复输出聊天信息;
|
|
|
|
|
</update.changes>
|
|
|
|
|
<update.changelog>
|
|
|
|
|
</update.changelog>
|
2016-12-22 12:31:42 +00:00
|
|
|
|
<env.GIT_COMMIT>DEV</env.GIT_COMMIT>
|
2016-12-05 11:45:41 +00:00
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2017-03-28 02:02:03 +00:00
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
2016-12-05 11:45:41 +00:00
|
|
|
|
</properties>
|
|
|
|
|
<repositories>
|
|
|
|
|
<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>pw.yumc</groupId>
|
|
|
|
|
<artifactId>YumCore</artifactId>
|
|
|
|
|
<type>jar</type>
|
2017-07-25 08:48:37 +00:00
|
|
|
|
<version>[1.8.1,)</version>
|
2016-12-05 11:45:41 +00:00
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
2016-09-05 07:59:11 +00:00
|
|
|
|
</project>
|