mirror of
https://github.com/MilkBowl/VaultAPI.git
synced 2024-11-14 14:35:14 +01:00
7684863231
again.
103 lines
3.3 KiB
XML
103 lines
3.3 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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>net.milkbowl.vault</groupId>
|
|
<artifactId>VaultAPI</artifactId>
|
|
<version>1.3.02</version>
|
|
<name>VaultAPI</name>
|
|
<url>http://dev.bukkit.org/server-mods/vault/</url>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<bukkitVersion>1.7.9-R0.1-SNAPSHOT</bukkitVersion>
|
|
</properties>
|
|
|
|
<!-- Organization -->
|
|
<organization>
|
|
<name>MilkBowl</name>
|
|
<url>https://github.com/MilkBowl/Vault</url>
|
|
</organization>
|
|
|
|
<scm>
|
|
<url>https://github.com/MilkBowl/Vault</url>
|
|
<connection>scm:git:git://github.com:MilkBowl/Vault.git</connection>
|
|
<developerConnection>scm:git:git@github.com:MilkBowl/Vault.git</developerConnection>
|
|
</scm>
|
|
|
|
<issueManagement>
|
|
<system>GitHub</system>
|
|
<url>https://github.com/MilkBowl/Vault/issues</url>
|
|
</issueManagement>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>bukkit-repo</id>
|
|
<url>http://repo.bukkit.org/content/groups/public/</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>pub-repo</id>
|
|
<name>Public Releases</name>
|
|
<url>http://nexus.theyeticave.net/content/repositories/pub_releases/</url>
|
|
</repository>
|
|
</distributionManagement>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<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>
|
|
|
|
<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>
|
|
<excludePackageNames>net.milkbowl.vault.chat.plugin:net.milkbowl.vault.economy.plugin:net.milkbowl.vault.permission.plugin</excludePackageNames>
|
|
<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.
|
|
|
|
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>
|
|
</project>
|