2015-05-17 05:21:54 +00:00
|
|
|
<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>
|
2015-10-27 00:57:22 +00:00
|
|
|
<groupId>cn.citycraft</groupId>
|
2015-05-17 05:21:54 +00:00
|
|
|
<artifactId>TeleportRandom</artifactId>
|
2016-01-06 11:36:59 +00:00
|
|
|
<version>1.1</version>
|
2015-05-17 05:25:18 +00:00
|
|
|
<name>TeleportRandom</name>
|
2015-05-17 05:21:54 +00:00
|
|
|
<build>
|
2015-05-28 22:22:35 +00:00
|
|
|
<finalName>${project.name}</finalName>
|
2015-05-17 05:21:54 +00:00
|
|
|
<resources>
|
|
|
|
<resource>
|
2015-10-27 00:57:22 +00:00
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
2015-05-17 05:21:54 +00:00
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.1</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.7</source>
|
|
|
|
<target>1.7</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2015-10-27 00:57:22 +00:00
|
|
|
<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>
|
2015-05-17 05:21:54 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2015-10-27 00:57:22 +00:00
|
|
|
<properties>
|
|
|
|
<jenkins.url>http://ci.citycraft.cn:8080</jenkins.url>
|
2016-01-06 11:36:59 +00:00
|
|
|
<update.description>添加自动更新和使用统计...</update.description>
|
2015-10-27 00:57:22 +00:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
2015-05-17 05:21:54 +00:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
|
|
|
|
</repository>
|
2015-10-27 00:57:22 +00:00
|
|
|
<repository>
|
|
|
|
<id>citycraft-repo</id>
|
|
|
|
<url>${jenkins.url}/plugin/repository/everything/</url>
|
|
|
|
</repository>
|
2015-05-17 05:21:54 +00:00
|
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
|
|
|
<type>jar</type>
|
2015-10-27 00:57:22 +00:00
|
|
|
<version>1.8.8-R0.1-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.citycraft</groupId>
|
|
|
|
<artifactId>PluginHelper</artifactId>
|
|
|
|
<type>jar</type>
|
|
|
|
<version>1.0</version>
|
2015-05-17 05:21:54 +00:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|