mirror of
https://github.com/ChestShop-authors/ChestShop-3.git
synced 2024-11-04 09:40:07 +01:00
130 lines
4.4 KiB
XML
130 lines
4.4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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>com.acrobot.chestshop</groupId>
|
|
<artifactId>chestshop</artifactId>
|
|
<version>3.50-t0053</version>
|
|
<description>Chest-and-sign shop plugin for Bukkit</description>
|
|
|
|
<scm>
|
|
<connection>scm:git:git://github.com/Acrobot/ChestShop-3</connection>
|
|
<developerConnection>scm:git:ssh://git@github.com/Acrobot/ChestShop-3.git</developerConnection>
|
|
<url>https://github.com/Acrobot/ChestShop-3</url>
|
|
</scm>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>bukkit-repo</id>
|
|
<url>http://repo.bukkit.org/content/repositories/releases/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>odditem-repo</id>
|
|
<url>http://repo.somethingodd.info/content/groups/public/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>sk89q-repo</id>
|
|
<url>http://maven.sk89q.com/repo/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>local_repo</id>
|
|
<url>file://${project.basedir}/repo/</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.bukkit</groupId>
|
|
<artifactId>bukkit</artifactId>
|
|
<version>1.4.7-R1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.palmergames.towny</groupId>
|
|
<artifactId>towny</artifactId>
|
|
<version>0.82.1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.milkbowl.vault</groupId>
|
|
<artifactId>vault</artifactId>
|
|
<version>1.2.24</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.iCo6</groupId>
|
|
<artifactId>iConomy6</artifactId>
|
|
<version>6.0.10b</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.iConomy</groupId>
|
|
<artifactId>iConomy5</artifactId>
|
|
<version>5.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cosine.boseconomy</groupId>
|
|
<artifactId>boseconomy</artifactId>
|
|
<version>0.7.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>info.somethingodd</groupId>
|
|
<artifactId>odditem</artifactId>
|
|
<version>0.9.5</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.herocraftonline.heroes</groupId>
|
|
<artifactId>heroes</artifactId>
|
|
<version>1.5.2-dev-b1705</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.griefcraft.lwc</groupId>
|
|
<artifactId>lwc</artifactId>
|
|
<version>4.3.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.daemitus.deadbolt</groupId>
|
|
<artifactId>deadbolt</artifactId>
|
|
<version>2.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sk89q</groupId>
|
|
<artifactId>worldguard</artifactId>
|
|
<version>5.6.4</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.webkonsept.bukkit.simplechestlock</groupId>
|
|
<artifactId>simplechestlock</artifactId>
|
|
<version>1.2.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.yi.acru.bukkit.lockette</groupId>
|
|
<artifactId>lockette</artifactId>
|
|
<version>1.7.9</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.bekvon.bukkit.residence</groupId>
|
|
<artifactId>residence</artifactId>
|
|
<version>2.6.6.3</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>2.4</version>
|
|
<configuration>
|
|
<finalName>chestshop</finalName>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
|
|
</project> |