57 lines
1.9 KiB
XML
57 lines
1.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>
|
|
|
|
<!-- Parent -->
|
|
<parent>
|
|
<groupId>com.massivecraft.massivesuper</groupId>
|
|
<artifactId>MassiveSuper</artifactId>
|
|
<version>2.11-SNAPSHOT</version>
|
|
<relativePath>../MassiveSuper</relativePath>
|
|
</parent>
|
|
|
|
<!-- Basics -->
|
|
<groupId>com.massivecraft.massivecore</groupId>
|
|
<artifactId>MassiveCore</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<!-- Info -->
|
|
<name>${project.artifactId}</name>
|
|
<description>${massiveColorInfo}${project.name} is a plugin that contains libraries and features that other plugins make use of. ${massiveDescriptionSuffix}</description>
|
|
<url>${massiveBaseUrl}/massivecore</url>
|
|
|
|
<!-- Dependencies -->
|
|
<dependencies>
|
|
<!-- Spigot -->
|
|
<dependency>
|
|
<groupId>org.spigotmc</groupId>
|
|
<artifactId>spigot-api</artifactId>
|
|
</dependency>
|
|
<!-- Vault -->
|
|
<dependency>
|
|
<groupId>net.milkbowl.vault</groupId>
|
|
<artifactId>Vault</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<!-- Build -->
|
|
<build>
|
|
<!-- Resources -->
|
|
<resources>
|
|
<!-- Standard -->
|
|
<resource>
|
|
<directory>${project.basedir}</directory>
|
|
<filtering>true</filtering>
|
|
<includes>
|
|
<include>*.yml</include>
|
|
</includes>
|
|
</resource>
|
|
<!-- OpenSource -->
|
|
<resource>
|
|
<directory>${project.build.sourceDirectory}</directory>
|
|
<filtering>false</filtering>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
|
|
</project>
|