2016-11-15 12:25:27 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2016-07-23 09:26:04 +00:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2016-11-13 17:43:22 +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>YumCore</artifactId>
|
2016-11-20 15:21:36 +00:00
|
|
|
<version>1.5</version>
|
2016-11-13 17:43:22 +00:00
|
|
|
<build>
|
2016-11-15 12:25:27 +00:00
|
|
|
<finalName>${project.artifactId}</finalName>
|
2016-11-13 17:43:22 +00:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
2016-11-16 12:03:55 +00:00
|
|
|
<version>2.4</version>
|
2016-11-13 17:43:22 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2016-11-16 12:03:55 +00:00
|
|
|
<phase>package</phase>
|
2016-11-13 17:43:22 +00:00
|
|
|
<goals>
|
2016-11-16 12:03:55 +00:00
|
|
|
<goal>jar-no-fork</goal>
|
2016-11-13 17:43:22 +00:00
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>2.10.3</version>
|
2016-11-16 12:03:55 +00:00
|
|
|
<configuration>
|
|
|
|
<failOnError>false</failOnError>
|
|
|
|
</configuration>
|
2016-11-13 17:43:22 +00:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2016-11-16 12:03:55 +00:00
|
|
|
<id>attach-javadocs</id>
|
2016-11-13 17:43:22 +00:00
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<ciManagement>
|
|
|
|
<system>Jenkins</system>
|
|
|
|
<url>http://ci.yumc.pw</url>
|
|
|
|
</ciManagement>
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
<env.GIT_COMMIT>开发版本</env.GIT_COMMIT>
|
2016-11-15 12:25:27 +00:00
|
|
|
<maven.compiler.source>1.7</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.7</maven.compiler.target>
|
2016-11-13 17:43:22 +00:00
|
|
|
</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>
|
2016-12-13 10:53:31 +00:00
|
|
|
<repository>
|
|
|
|
<id>dmulloy2-repo</id>
|
|
|
|
<url>http://repo.dmulloy2.net/content/groups/public/</url>
|
|
|
|
</repository>
|
2016-11-13 17:43:22 +00:00
|
|
|
</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>
|
|
|
|
<version>1.10.2-R0.1-SNAPSHOT</version>
|
2016-11-16 01:33:23 +00:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
</exclusion>
|
2016-11-16 12:03:55 +00:00
|
|
|
<exclusion>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
</exclusion>
|
2016-11-16 01:33:23 +00:00
|
|
|
</exclusions>
|
2016-11-13 17:43:22 +00:00
|
|
|
</dependency>
|
2016-11-15 06:22:08 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.md-5</groupId>
|
|
|
|
<artifactId>bungeecord-api</artifactId>
|
|
|
|
<version>1.10-SNAPSHOT</version>
|
2016-11-16 01:33:23 +00:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>snakeyaml</artifactId>
|
|
|
|
<groupId>org.yaml</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2016-11-15 06:22:08 +00:00
|
|
|
</dependency>
|
2016-11-15 12:25:27 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>me.clip</groupId>
|
|
|
|
<artifactId>placeholderapi</artifactId>
|
|
|
|
<version>2.5.1</version>
|
2016-11-16 01:33:23 +00:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2016-11-15 12:25:27 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.black_ixx</groupId>
|
|
|
|
<artifactId>PlayerPoints</artifactId>
|
|
|
|
<version>2.1.4</version>
|
|
|
|
</dependency>
|
2016-11-13 17:43:22 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.milkbowl.vault</groupId>
|
|
|
|
<artifactId>Vault</artifactId>
|
|
|
|
<version>1.5.6</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.mail</groupId>
|
|
|
|
<artifactId>mail</artifactId>
|
|
|
|
<version>1.4.7</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>craftbukkit</artifactId>
|
|
|
|
<version>1.7.10</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.comphenix.protocol</groupId>
|
|
|
|
<artifactId>ProtocolLib</artifactId>
|
2016-12-13 10:53:31 +00:00
|
|
|
<version>4.1.0</version>
|
2016-11-13 17:43:22 +00:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2016-07-23 09:26:04 +00:00
|
|
|
</project>
|