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>
2021-04-04 17:32:25 +02:00
<version > 1.8</version>
2018-08-17 09:01:02 +02:00
2014-05-17 20:20:34 +02:00
<name > VaultAPI</name>
2018-08-17 09:01:02 +02:00
<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>
2014-05-17 20:20:34 +02:00
<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>
2018-09-11 06:46:17 +02:00
<bukkitVersion > 1.13.1-R0.1-SNAPSHOT</bukkitVersion>
2014-05-09 04:07:01 +02:00
</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 >
2018-08-17 09:01:02 +02:00
<system > Travis-CI</system>
2014-05-17 20:20:34 +02:00
<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 >
2014-12-08 07:13:55 +01:00
<id > spigot-repo</id>
<url > https://hub.spigotmc.org/nexus/content/groups/public/</url>
2014-05-09 04:07:01 +02:00
</repository>
</repositories>
2014-05-17 20:20:34 +02:00
2014-05-09 04:15:02 +02:00
<distributionManagement >
2020-08-02 22:13:45 +02:00
<repository >
<id > github</id>
<name > GitHub Packages</name>
2020-08-02 23:22:48 +02:00
<url > https://maven.pkg.github.com/milkbowl/github-releases</url>
2020-08-02 22:13:45 +02:00
</repository>
2014-05-09 04:15:02 +02:00
</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>
2019-12-14 02:10:58 +01:00
<scope > provided</scope>
2014-05-09 04:07:01 +02:00
</dependency>
<!-- Test Dependency -->
<dependency >
<groupId > junit</groupId>
<artifactId > junit</artifactId>
2020-10-13 11:11:14 +02:00
<version > 4.13.1</version>
2014-05-09 04:07:01 +02:00
<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>
2020-08-02 21:12:20 +02:00
<version > 3.8.1</version>
2014-05-09 04:07:01 +02:00
<configuration >
2018-09-11 06:46:17 +02:00
<source > 1.8</source>
<target > 1.8</target>
2014-05-09 04:07:01 +02:00
</configuration>
</plugin>
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-source-plugin</artifactId>
2020-08-02 21:12:20 +02:00
<version > 3.2.1</version>
2020-08-02 21:46:19 +02:00
<executions >
<execution >
<id > attach-sources</id>
<phase > verify</phase>
<goals >
<goal > jar-no-fork</goal>
</goals>
</execution>
</executions>
2014-05-09 04:07:01 +02:00
</plugin>
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-javadoc-plugin</artifactId>
2020-08-02 21:12:20 +02:00
<version > 3.2.0</version>
2014-05-09 04:07:01 +02:00
<configuration >
<show > public</show>
<windowtitle > Vault</windowtitle>
<verbose > false</verbose>
<author > true</author>
<version > true</version>
<linksource > true</linksource>
2014-06-24 02:22:54 +02:00
<notimestamp > true</notimestamp>
2020-08-02 23:02:05 +02:00
<bottom > <![CDATA[<b>Milkbowl, 2020</b>]]> </bottom>
2014-06-23 22:20:15 +02:00
<reportOutputDirectory > ${project.build.directory}</reportOutputDirectory>
<destDir > javadoc-latest</destDir>
2014-05-09 04:07:01 +02:00
</configuration>
</plugin>
</plugins>
</build>
</project>