2014-05-09 04:07:01 +02: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/maven-v4_0_0.xsd">
<modelVersion > 4.0.0</modelVersion>
<groupId > net.milkbowl.vault</groupId>
<artifactId > VaultAPI</artifactId>
2014-05-24 01:27:55 +02:00
<version > 1.4</version>
2014-05-17 20:20:34 +02:00
<name > VaultAPI</name>
<url > http://dev.bukkit.org/server-mods/vault/</url>
<properties >
2014-05-09 04:07:01 +02:00
<project.build.sourceEncoding > UTF-8</project.build.sourceEncoding>
<bukkitVersion > 1.7.9-R0.1-SNAPSHOT</bukkitVersion>
</properties>
2014-05-17 20:20:34 +02:00
2014-05-09 04:07:01 +02:00
<!-- Organization -->
<organization >
<name > MilkBowl</name>
2014-05-17 20:20:34 +02:00
<url > https://github.com/MilkBowl</url>
2014-05-09 04:07:01 +02:00
</organization>
<scm >
2014-05-17 20:20:34 +02:00
<url > https://github.com/MilkBowl/VaultAPI</url>
<connection > scm:git:git://github.com:MilkBowl/VaultAPI.git</connection>
<developerConnection > scm:git:git@github.com:MilkBowl/VaultAPI.git</developerConnection>
2014-05-09 04:07:01 +02:00
</scm>
2014-05-17 20:20:34 +02:00
<ciManagement >
<system > travis</system>
<url > https://travis-ci.org/MilkBowl/VaultAPI</url>
</ciManagement>
2014-05-09 04:07:01 +02:00
<issueManagement >
<system > GitHub</system>
2014-05-17 20:20:34 +02:00
<url > https://github.com/MilkBowl/VaultAPI/issues</url>
2014-05-09 04:07:01 +02:00
</issueManagement>
<repositories >
<repository >
<id > bukkit-repo</id>
<url > http://repo.bukkit.org/content/groups/public/</url>
</repository>
</repositories>
2014-05-17 20:20:34 +02:00
2014-05-09 04:15:02 +02:00
<distributionManagement >
<repository >
<id > pub-repo</id>
<name > Public Releases</name>
<url > http://nexus.theyeticave.net/content/repositories/pub_releases/</url>
</repository>
</distributionManagement>
2014-05-09 04:07:01 +02:00
<dependencies >
2014-05-17 20:20:34 +02:00
<dependency >
2014-05-09 04:07:01 +02:00
<groupId > org.bukkit</groupId>
<artifactId > bukkit</artifactId>
<version > ${bukkitVersion}</version>
<type > jar</type>
</dependency>
<!-- Test Dependency -->
<dependency >
<groupId > junit</groupId>
<artifactId > junit</artifactId>
<version > 4.11</version>
<type > jar</type>
<scope > test</scope>
<optional > true</optional>
</dependency>
</dependencies>
2014-05-17 20:20:34 +02:00
2014-05-09 04:07:01 +02:00
<build >
<defaultGoal > clean install</defaultGoal>
<plugins >
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-compiler-plugin</artifactId>
<version > 2.0.2</version>
<configuration >
<source > 1.6</source>
<target > 1.6</target>
</configuration>
</plugin>
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-source-plugin</artifactId>
<version > 2.2.1</version>
</plugin>
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-javadoc-plugin</artifactId>
<version > 2.9.1</version>
<configuration >
<show > public</show>
<windowtitle > Vault</windowtitle>
<verbose > false</verbose>
<author > true</author>
<version > true</version>
<linksource > true</linksource>
<bottom > <![CDATA[<b>Milkbowl, 2014</b>]]> </bottom>
</configuration>
</plugin>
</plugins>
</build>
<description > Vault is a Permissions & Economy API to allow plugins to more easily hook into these systems without needing to hook each individual system themselves.
2014-05-17 20:20:34 +02:00
Vault currently supports the following: Permissions 3, PEX, GroupManager, bPerms, bPerms2, SimplyPerms, DroxPerms, zPermissions, rscPermissions, KPerms, Starburst, iConomy (4/5/6) BOSEconomy *6/7), EssentialsEcon, 3Co, MultiConomy, MineConomy, EconXP, eWallet, CurrencyCore, XPBank, CraftConomy, AEco, SDFEconomy, TAEcon
</description>
2014-05-09 04:07:01 +02:00
</project>