2014-10-28 09:20:52 +00:00
|
|
|
<?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.intellectualcrafters</groupId>
|
2015-01-13 16:38:15 +00:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
2014-10-28 09:20:52 +00:00
|
|
|
<artifactId>PlotSquared</artifactId>
|
2015-04-12 14:06:13 +00:00
|
|
|
<version>2.9.13</version>
|
2014-10-28 09:20:52 +00:00
|
|
|
<name>PlotSquared</name>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<build>
|
2015-03-15 02:08:45 +00:00
|
|
|
<finalName>PlotSquared</finalName>
|
2014-10-28 09:20:52 +00:00
|
|
|
<sourceDirectory>src/main/java</sourceDirectory>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<targetPath>.</targetPath>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<directory>${basedir}/src/main/resources/</directory>
|
|
|
|
<includes>
|
|
|
|
<include>
|
|
|
|
plugin.yml
|
|
|
|
</include>
|
2014-11-08 19:37:34 +00:00
|
|
|
<include>
|
|
|
|
LICENSE
|
|
|
|
</include>
|
2015-02-27 07:50:16 +00:00
|
|
|
<include>
|
|
|
|
town.template
|
|
|
|
</include>
|
|
|
|
<include>
|
|
|
|
skyblock.template
|
|
|
|
</include>
|
2014-10-28 09:20:52 +00:00
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>2.3.2</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.7</source>
|
|
|
|
<target>1.7</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>bukkit-repo</id>
|
|
|
|
<url>http://repo.bukkit.org/content/groups/public/</url>
|
|
|
|
</repository>
|
2015-02-15 05:39:44 +00:00
|
|
|
<repository>
|
|
|
|
<id>empcraft-repo</id>
|
|
|
|
<url>http://empcraft.com/maven2</url>
|
|
|
|
</repository>
|
2015-02-08 03:49:00 +00:00
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
|
|
|
|
</repository>
|
2014-10-28 09:20:52 +00:00
|
|
|
<repository>
|
|
|
|
<id>confuser-repo</id>
|
|
|
|
<url>http://ci.frostcast.net/plugin/repository/everything</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>sk80q</id>
|
|
|
|
<url>http://maven.sk89q.com/artifactory/repo/</url>
|
|
|
|
</repository>
|
2015-03-13 05:47:22 +00:00
|
|
|
<repository>
|
|
|
|
<id>vault-repo</id>
|
|
|
|
<url>http://nexus.theyeticave.net/content/repositories/pub_releases</url>
|
|
|
|
</repository>
|
2014-10-28 09:20:52 +00:00
|
|
|
</repositories>
|
|
|
|
<dependencies>
|
2015-01-10 10:20:20 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.websocket</groupId>
|
|
|
|
<artifactId>javax.websocket-api</artifactId>
|
|
|
|
<version>1.1</version>
|
|
|
|
</dependency>
|
2014-11-04 01:22:09 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
2015-02-08 03:49:00 +00:00
|
|
|
<version>1.8-R0.1-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2014-10-28 09:20:52 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.sk89q</groupId>
|
|
|
|
<artifactId>worldedit</artifactId>
|
|
|
|
<version>6.0.0-SNAPSHOT</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>me.confuser</groupId>
|
|
|
|
<artifactId>BarAPI</artifactId>
|
|
|
|
<version>2.0</version>
|
|
|
|
</dependency>
|
2014-11-03 09:08:57 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.11</version>
|
|
|
|
</dependency>
|
2015-03-13 05:47:22 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.milkbowl.vault</groupId>
|
|
|
|
<artifactId>VaultAPI</artifactId>
|
|
|
|
<version>1.5</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2014-10-28 09:20:52 +00:00
|
|
|
</dependencies>
|
|
|
|
</project>
|