mirror of
https://e.coding.net/circlecloud/EquipManager.git
synced 2024-10-31 07:08:49 +00:00
ebe73712cc
Signed-off-by: 502647092 <jtb1@163.com>
98 lines
2.9 KiB
XML
98 lines
2.9 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>cn.citycraft</groupId>
|
|
<artifactId>EquipManager</artifactId>
|
|
<version>1.0</version>
|
|
<name>EquipManager</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.8</source>
|
|
<target>1.8</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>
|
|
<include>org.mcstats.*:*</include>
|
|
</includes>
|
|
</artifactSet>
|
|
<relocations>
|
|
<relocation>
|
|
<pattern>org.mcstats</pattern>
|
|
<shadedPattern>${project.groupId}.${project.artifactId}.mcstats</shadedPattern>
|
|
</relocation>
|
|
<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>
|
|
<repositories>
|
|
<repository>
|
|
<id>spigot-repo</id>
|
|
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>citycraft-repo</id>
|
|
<url>http://ci.citycraft.cn:8800/jenkins/plugin/repository/everything/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>Plugin Metrics</id>
|
|
<url>http://repo.mcstats.org/content/repositories/public</url>
|
|
</repository>
|
|
</repositories>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.spigotmc</groupId>
|
|
<artifactId>spigot-api</artifactId>
|
|
<type>jar</type>
|
|
<version>1.8.3-R0.1-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.citycraft</groupId>
|
|
<artifactId>PluginHelper</artifactId>
|
|
<type>jar</type>
|
|
<version>1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mcstats.bukkit</groupId>
|
|
<artifactId>metrics</artifactId>
|
|
<version>R8-SNAPSHOT</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
</project> |