mirror of
https://github.com/MilkBowl/Vault.git
synced 2024-11-27 13:07:23 +01:00
Merge pull request #436 from Grinch/master
Update plugin.yml and pom.xml
This commit is contained in:
commit
7300ce0b64
12
plugin.yml
12
plugin.yml
@ -1,10 +1,12 @@
|
|||||||
name: Vault
|
name: ${project.name}
|
||||||
main: net.milkbowl.vault.Vault
|
version: ${project.version}-b${BUILD_NUMBER}
|
||||||
version: 1.2.25-b${BUILD_NUMBER}
|
description: ${project.description}
|
||||||
authors: [cereal, Sleaker, mung3r]
|
authors: [cereal, Sleaker, mung3r]
|
||||||
website: http://dev.bukkit.org/server-mods/vault
|
website: ${project.url}
|
||||||
|
|
||||||
|
main: ${mainClass}
|
||||||
load: startup
|
load: startup
|
||||||
description: Abstraction Library for Bukkit Plugins
|
|
||||||
commands:
|
commands:
|
||||||
vault-info:
|
vault-info:
|
||||||
description: Displays information about Vault
|
description: Displays information about Vault
|
||||||
|
98
pom.xml
98
pom.xml
@ -1,17 +1,69 @@
|
|||||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
<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">
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>net.milkbowl.vault</groupId>
|
|
||||||
<artifactId>Vault</artifactId>
|
<!-- Project information -->
|
||||||
|
<groupId>net.milkbowl</groupId>
|
||||||
|
<artifactId>vault</artifactId>
|
||||||
<version>1.2.27-SNAPSHOT</version>
|
<version>1.2.27-SNAPSHOT</version>
|
||||||
|
<name>Vault</name>
|
||||||
|
<url>http://dev.bukkit.org/server-mods/vault/</url>
|
||||||
|
<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, Starburst, iConomy (4/5/6) BOSEconomy *6/7), EssentialsEcon, 3Co, MultiConomy, MineConomy, EconXP, eWallet, CurrencyCore, XPBank, CraftConomy, AEco, SDFEconomy</description>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
|
<bukkitVersion>1.6.2-R0.1-SNAPSHOT</bukkitVersion>
|
||||||
|
<mainClass>net.milkbowl.vault.Vault</mainClass>
|
||||||
</properties>
|
</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>
|
||||||
|
|
||||||
|
<ciManagement>
|
||||||
|
<system>jenkins</system>
|
||||||
|
<url>http://ci.herocraftonline.com/job/Vault/</url>
|
||||||
|
</ciManagement>
|
||||||
|
|
||||||
|
<repositories>
|
||||||
|
<repository>
|
||||||
|
<id>bukkit-repo</id>
|
||||||
|
<url>http://repo.bukkit.org/content/groups/public/</url>
|
||||||
|
</repository>
|
||||||
|
<repository>
|
||||||
|
<id>sdfeconomy-repo</id>
|
||||||
|
<url>http://omwah.sdf.org/maven/repo/snapshots/</url>
|
||||||
|
</repository>
|
||||||
|
<repository>
|
||||||
|
<id>greatman-repo</id>
|
||||||
|
<url>http://repo.greatmancode.com/content/groups/public/</url>
|
||||||
|
</repository>
|
||||||
|
<repository>
|
||||||
|
<id>krinsoft</id>
|
||||||
|
<url>http://files.krinsoft.net:8085/nexus/content/groups/public</url>
|
||||||
|
</repository>
|
||||||
|
</repositories>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.bukkit</groupId>
|
<groupId>org.bukkit</groupId>
|
||||||
<artifactId>bukkit</artifactId>
|
<artifactId>bukkit</artifactId>
|
||||||
<version>1.6.2-R0.1-SNAPSHOT</version>
|
<version>${bukkitVersion}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>de.hydrox.bukkit.DroxPerms</groupId>
|
<groupId>de.hydrox.bukkit.DroxPerms</groupId>
|
||||||
@ -281,6 +333,7 @@
|
|||||||
<systemPath>${project.basedir}/lib/TotalPermissions.jar</systemPath>
|
<systemPath>${project.basedir}/lib/TotalPermissions.jar</systemPath>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<defaultGoal>clean install</defaultGoal>
|
<defaultGoal>clean install</defaultGoal>
|
||||||
<sourceDirectory>src/</sourceDirectory>
|
<sourceDirectory>src/</sourceDirectory>
|
||||||
@ -356,43 +409,4 @@
|
|||||||
</plugin>
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
<name>Vault</name>
|
|
||||||
<url>http://dev.bukkit.org/server-mods/vault/</url>
|
|
||||||
<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:
|
|
||||||
Permissions 3, PEX, GroupManager, bPerms, bPerms2, SimplyPerms, DroxPerms, zPermissions, Starburst
|
|
||||||
iConomy 4,5,6 BOSEconomy 6/7, EssentialsEcon, 3Co, MultiConomy, MineConomy, EconXP, eWallet, CurrencyCore, XPBank, CraftConomy, AEco, SDFEconomy
|
|
||||||
</description>
|
|
||||||
<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>
|
|
||||||
<ciManagement>
|
|
||||||
<system>jenkins</system>
|
|
||||||
<url>http://ci.herocraftonline.com/job/Vault/</url>
|
|
||||||
</ciManagement>
|
|
||||||
<repositories>
|
|
||||||
<repository>
|
|
||||||
<id>bukkit-repo</id>
|
|
||||||
<url>http://repo.bukkit.org/content/groups/public/</url>
|
|
||||||
</repository>
|
|
||||||
<repository>
|
|
||||||
<id>sdfeconomy-repo</id>
|
|
||||||
<url>http://omwah.sdf.org/maven/repo/snapshots/</url>
|
|
||||||
</repository>
|
|
||||||
<repository>
|
|
||||||
<id>greatman-repo</id>
|
|
||||||
<url>http://repo.greatmancode.com/content/groups/public/</url>
|
|
||||||
</repository>
|
|
||||||
<repository>
|
|
||||||
<id>krinsoft</id>
|
|
||||||
<url>http://files.krinsoft.net:8085/nexus/content/groups/public</url>
|
|
||||||
</repository>
|
|
||||||
</repositories>
|
|
||||||
</project>
|
</project>
|
||||||
|
Loading…
Reference in New Issue
Block a user