2014-03-17 16:02:22 +01:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2016-04-19 00:15:30 +02:00
|
|
|
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>
|
2016-03-21 20:35:12 +01:00
|
|
|
|
2016-04-19 00:15:30 +02:00
|
|
|
<groupId>com.dre</groupId>
|
|
|
|
<artifactId>brewery</artifactId>
|
2016-05-30 01:08:54 +02:00
|
|
|
<version>1.4.4</version>
|
2016-04-19 00:15:30 +02:00
|
|
|
<name>Brewery</name>
|
2016-03-21 20:35:12 +01:00
|
|
|
|
2016-04-19 00:15:30 +02:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
</properties>
|
2016-03-21 20:35:12 +01:00
|
|
|
|
2016-04-19 00:15:30 +02:00
|
|
|
<build>
|
|
|
|
<sourceDirectory>src</sourceDirectory>
|
2016-03-21 20:35:12 +01:00
|
|
|
|
2016-04-19 00:15:30 +02:00
|
|
|
<resources>
|
|
|
|
<!-- Static resources -->
|
|
|
|
<resource>
|
2016-04-22 00:50:04 +02:00
|
|
|
<filtering>true</filtering>
|
2016-04-19 00:15:30 +02:00
|
|
|
<directory>${project.basedir}/resources</directory>
|
|
|
|
<includes>
|
|
|
|
<include>**/*.yml</include>
|
|
|
|
</includes>
|
|
|
|
<excludes>
|
|
|
|
<exclude>target/**</exclude>
|
|
|
|
<exclude>.travis.yml</exclude>
|
|
|
|
</excludes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2016-03-21 20:35:12 +01:00
|
|
|
|
2016-04-19 00:15:30 +02:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2016-05-15 14:43:34 +02:00
|
|
|
<version>3.5.1</version>
|
2016-04-19 00:15:30 +02:00
|
|
|
<configuration>
|
|
|
|
<source>1.7</source>
|
|
|
|
<target>1.7</target>
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2016-03-21 20:35:12 +01:00
|
|
|
|
2016-04-19 00:15:30 +02:00
|
|
|
<repositories>
|
2016-05-18 14:12:36 +02:00
|
|
|
<repository>
|
|
|
|
<id>md_5-releases</id>
|
|
|
|
<url>http://repo.md-5.net/content/repositories/releases/</url>
|
2016-05-15 14:43:34 +02:00
|
|
|
</repository>
|
2016-04-19 00:15:30 +02:00
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>vault-repo</id>
|
|
|
|
<url>http://nexus.theyeticave.net/content/repositories/pub_releases</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
2016-05-15 14:43:34 +02:00
|
|
|
<id>mcstats-repo</id>
|
|
|
|
<url>http://repo.mcstats.org/content/repositories/public/</url>
|
2016-04-19 00:15:30 +02:00
|
|
|
</repository>
|
|
|
|
<repository>
|
2016-05-15 14:43:34 +02:00
|
|
|
<id>sk89q-repo</id>
|
|
|
|
<url>http://maven.sk89q.com/repo/</url>
|
2016-04-19 00:15:30 +02:00
|
|
|
</repository>
|
|
|
|
<repository>
|
2016-05-18 14:12:36 +02:00
|
|
|
<id>dre2n-rpo</id>
|
|
|
|
<url>http://feuerstern.bplaced.net/repo/</url>
|
2016-04-19 00:15:30 +02:00
|
|
|
</repository>
|
|
|
|
</repositories>
|
2015-03-16 15:59:44 +01:00
|
|
|
|
2016-04-19 00:15:30 +02:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
2016-05-18 14:12:36 +02:00
|
|
|
<version>1.9.4-R0.1-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
2016-04-19 00:15:30 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.milkbowl.vault</groupId>
|
|
|
|
<artifactId>VaultAPI</artifactId>
|
|
|
|
<version>1.5</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sk89q</groupId>
|
|
|
|
<artifactId>worldguard</artifactId>
|
|
|
|
<version>6.1</version>
|
2016-05-18 14:12:36 +02:00
|
|
|
<scope>provided</scope>
|
2016-04-19 00:15:30 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2016-04-19 05:16:25 +02:00
|
|
|
<groupId>com.griefcraft.lwc</groupId>
|
|
|
|
<artifactId>LWCPlugin</artifactId>
|
2016-05-15 14:43:34 +02:00
|
|
|
<version>4.5.0-SNAPSHOT</version>
|
2016-05-18 14:12:36 +02:00
|
|
|
<scope>provided</scope>
|
2016-04-19 00:15:30 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>me.ryanhamshire</groupId>
|
|
|
|
<artifactId>GriefPrevention</artifactId>
|
2016-05-15 14:43:34 +02:00
|
|
|
<version>14.5.4</version>
|
2016-05-18 14:12:36 +02:00
|
|
|
<scope>provided</scope>
|
2016-04-19 00:15:30 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>de.diddiz</groupId>
|
|
|
|
<artifactId>logblock</artifactId>
|
|
|
|
<version>1.94</version>
|
2016-05-18 14:12:36 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>de.diddiz</groupId>
|
|
|
|
<artifactId>questioner</artifactId>
|
|
|
|
<version>1.94</version>
|
|
|
|
<scope>provided</scope>
|
2016-04-19 00:15:30 +02:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2014-02-15 16:40:25 +01:00
|
|
|
</project>
|