Last active
August 29, 2015 13:57
-
-
Save aadnk/9840826 to your computer and use it in GitHub Desktop.
POM file for MCore.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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>com.massivecraft</groupId> | |
<artifactId>mcore</artifactId> | |
<version>7.0.2</version> | |
<packaging>jar</packaging> | |
<description>MCore stands for MassiveCraft Core and is a plugin that contains libraries and features that other plugins make use of.</description> | |
<properties> | |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
</properties> | |
<repositories> | |
<repository> | |
<id>bukkit-rep</id> | |
<url>http://repo.bukkit.org/content/groups/public</url> | |
</repository> | |
<repository> | |
<id>comphenix-releases</id> | |
<name>Comphenix Maven Releases</name> | |
<url>http://repo.comphenix.net/content/repositories/releases/</url> | |
</repository> | |
<repository> | |
<id>comphenix-third-party</id> | |
<name>Comphenix Third Party</name> | |
<url>http://repo.comphenix.net/content/repositories/thirdparty/</url> | |
</repository> | |
</repositories> | |
<build> | |
<defaultGoal>clean install</defaultGoal> | |
<sourceDirectory>src</sourceDirectory> | |
<resources> | |
<resource> | |
<directory></directory> | |
<includes> | |
<include>plugin.yml</include> | |
</includes> | |
</resource> | |
</resources> | |
<plugins> | |
<plugin> | |
<artifactId>maven-compiler-plugin</artifactId> | |
<version>2.3.2</version> | |
<configuration> | |
<source>1.7</source> | |
<target>1.7</target> | |
</configuration> | |
</plugin> | |
</plugins> | |
</build> | |
<url>http://dev.bukkit.org/bukkit-plugins/mcore/</url> | |
<name>mcore</name> | |
<scm> | |
<connection>scm:git:git://github.com/MassiveCraft/mcore.git</connection> | |
<url>https://github.com/MassiveCraft/mcore</url> | |
</scm> | |
<developers> | |
<developer> | |
<id>oloflarsson</id> | |
<name>Olof Larsson</name> | |
<url>http://oloflarsson.se</url> | |
<roles> | |
<role>developer</role> | |
<role>maintainer</role> | |
</roles> | |
</developer> | |
</developers> | |
<dependencies> | |
<dependency> | |
<groupId>org.bukkit</groupId> | |
<artifactId>craftbukkit</artifactId> | |
<version>1.7.5-R0.1-SNAPSHOT</version> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<groupId>com.comphenix.protocol</groupId> | |
<artifactId>ProtocolLib</artifactId> | |
<version>3.2.0</version> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<groupId>net.milkbowl.vault</groupId> | |
<artifactId>Vault</artifactId> | |
<version>1.2.22</version> | |
</dependency> | |
</dependencies> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment