2016-06-04 10:39:05 +00:00
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2016-12-11 14:40:57 +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>MiaoBoard</artifactId>
|
2017-10-15 16:22:52 +00:00
|
|
|
|
<version>2.4.0</version>
|
2016-12-11 14:40:57 +00:00
|
|
|
|
<description>喵式记分板</description>
|
|
|
|
|
<build>
|
|
|
|
|
<finalName>${project.artifactId}</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-09 01:25:49 +00:00
|
|
|
|
<version>2.4.3</version>
|
2016-12-11 14:40:57 +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>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>shade</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</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>
|
2017-06-28 02:39:04 +00:00
|
|
|
|
<option>-keep class ${project.groupId}.${project.artifactId}.${project.artifactId}
|
|
|
|
|
</option>
|
2016-12-11 14:40:57 +00:00
|
|
|
|
</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-10-15 16:22:52 +00:00
|
|
|
|
<update.description>§a正式版本 2.4.0</update.description>
|
2017-03-09 03:11:35 +00:00
|
|
|
|
<update.changes>
|
2017-10-15 16:22:52 +00:00
|
|
|
|
§617-10-15 §cfix: 修复颜色字符分割错误;
|
2017-08-17 06:53:24 +00:00
|
|
|
|
§617-08-15 §cfix: 修复事件未标记为异步的问题;
|
2017-06-28 02:39:04 +00:00
|
|
|
|
§617-06-28 §cfix: 修复T端不兼容的问题;
|
2017-03-09 03:11:35 +00:00
|
|
|
|
§617-03-09 §cfix: 修复行更新错误;
|
|
|
|
|
§617-03-09 §afeat: 添加记分板更新事件
|
|
|
|
|
</update.changes>
|
|
|
|
|
<update.changelog></update.changelog>
|
2016-12-12 09:51:51 +00:00
|
|
|
|
<env.GIT_COMMIT>DEV</env.GIT_COMMIT>
|
2016-12-11 14:40:57 +00:00
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2017-03-09 01:25:49 +00:00
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
2016-12-11 14:40:57 +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-03-09 01:25:49 +00:00
|
|
|
|
<version>1.7</version>
|
2016-12-11 14:40:57 +00:00
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
2016-06-04 10:39:05 +00:00
|
|
|
|
</project>
|