mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2025-01-03 06:27:33 +01:00
126 lines
4.2 KiB
XML
126 lines
4.2 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/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>uk.org.whoami.authme.AuthMe</groupId>
|
|
<artifactId>AuthMe</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>AuthMe</name>
|
|
<repositories>
|
|
<repository>
|
|
<id>Bukkit</id>
|
|
<name>Bukkit</name>
|
|
<url>http://repo.bukkit.org/content/groups/public/</url>
|
|
</repository>
|
|
</repositories>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>2.2</version>
|
|
<configuration>
|
|
<archive>
|
|
<manifestFile>${manifest.file}</manifestFile>
|
|
</archive>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<version>2.9.1</version>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>bukkit</artifactId>
|
|
<version>1.6.2-R0.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.milkbowl.vault</groupId>
|
|
<artifactId>Vault</artifactId>
|
|
<version>1.2.23-SNAPSHOT</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/Vault.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.citizensnpcs</groupId>
|
|
<artifactId>citizensapi</artifactId>
|
|
<version>2.0.6-SNAPSHOT</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/citizensapi-2.0.6-SNAPSHOT.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.citizensnpcs</groupId>
|
|
<artifactId>Citizens</artifactId>
|
|
<version>1.2.1</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/Citizens.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.getSpout</groupId>
|
|
<artifactId>SpoutPlugin</artifactId>
|
|
<version>1.5.1-R0.3-SNAPSHOT</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/SpoutPlugin.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.trc202</groupId>
|
|
<artifactId>CombatTag</artifactId>
|
|
<version>5.4</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/CombatTag-5.4.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<version>5.1.6</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/mysql-connector-java.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.xerial</groupId>
|
|
<artifactId>sqlite-jdbc</artifactId>
|
|
<version>3.7.2</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/sqlite-jdbc.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>me.muizers</groupId>
|
|
<artifactId>Notifications</artifactId>
|
|
<version>1.1</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/Notifications.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.Acrobot</groupId>
|
|
<artifactId>ChestShop</artifactId>
|
|
<version>3.50 t0047</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/ChestShop.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.h2</groupId>
|
|
<artifactId>h2</artifactId>
|
|
<version>1.3.164</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/h2-1.3.164.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.cypherx</groupId>
|
|
<artifactId>xauth</artifactId>
|
|
<version>2.0.26</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/xAuth.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.onarandombox</groupId>
|
|
<artifactId>MultiverseCore</artifactId>
|
|
<version>2.5-b654</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/Multiverse-Core-2.5.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.earth2me.essentials</groupId>
|
|
<artifactId>Essentials</artifactId>
|
|
<version>Pre2.9.4.1</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/lib/Essentials.jar</systemPath>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |