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>
|
2019-12-02 15:56:30 +01:00
|
|
|
<artifactId>Brewery</artifactId>
|
2019-12-02 20:24:14 +01:00
|
|
|
<version>2.0-beta1</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>
|
2019-11-06 19:44:52 +01:00
|
|
|
<testSourceDirectory>test</testSourceDirectory>
|
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>
|
2019-12-02 20:24:14 +01:00
|
|
|
<include>**/*.txt</include>
|
2016-04-19 00:15:30 +02:00
|
|
|
</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>
|
2019-01-12 16:43:46 +01:00
|
|
|
<version>3.8.0</version>
|
2016-04-19 00:15:30 +02:00
|
|
|
<configuration>
|
2018-10-27 12:09:53 +02:00
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
2016-04-19 00:15:30 +02:00
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2018-10-26 21:17:09 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2019-01-12 16:43:46 +01:00
|
|
|
<version>3.2.1</version>
|
2018-10-26 21:17:09 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactSet>
|
|
|
|
<includes>
|
|
|
|
<include>org.bstats:bstats-bukkit</include>
|
|
|
|
</includes>
|
|
|
|
</artifactSet>
|
|
|
|
<relocations>
|
|
|
|
<relocation>
|
|
|
|
<pattern>org.bstats.bukkit</pattern>
|
|
|
|
<shadedPattern>com.dre.brewery.integration</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
</relocations>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2016-04-19 00:15:30 +02:00
|
|
|
</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>
|
2018-10-26 21:17:09 +02:00
|
|
|
<id>md_5-public</id>
|
|
|
|
<url>http://repo.md-5.net/content/groups/public/</url>
|
2016-05-15 14:43:34 +02:00
|
|
|
</repository>
|
2016-04-19 00:15:30 +02:00
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
2019-10-20 21:06:35 +02:00
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
2016-04-19 00:15:30 +02:00
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>vault-repo</id>
|
2017-06-10 23:37:08 +02:00
|
|
|
<url>http://nexus.hc.to/content/repositories/pub_releases</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>
|
2018-10-26 21:17:09 +02:00
|
|
|
<repository>
|
2019-11-06 19:44:52 +01:00
|
|
|
<!-- GriefPrevention, SlimeFun -->
|
2018-10-26 21:17:09 +02:00
|
|
|
<id>jitpack.io</id>
|
|
|
|
<url>https://jitpack.io</url>
|
|
|
|
</repository>
|
2016-04-19 00:15:30 +02:00
|
|
|
<repository>
|
2019-01-17 12:30:12 +01:00
|
|
|
<id>brewery-repo</id>
|
|
|
|
<url>https://zebradrive.de/maven/</url>
|
2016-04-19 00:15:30 +02:00
|
|
|
</repository>
|
2017-07-26 20:36:50 +02:00
|
|
|
<repository>
|
2019-01-17 12:30:12 +01:00
|
|
|
<!-- Citadel -->
|
2017-07-26 20:36:50 +02:00
|
|
|
<id>devoted-repo</id>
|
|
|
|
<url>https://build.devotedmc.com/plugin/repository/everything/</url>
|
|
|
|
</repository>
|
2018-10-26 21:17:09 +02:00
|
|
|
<repository>
|
2019-10-11 12:23:59 +02:00
|
|
|
<!-- bStats -->
|
|
|
|
<id>CodeMC</id>
|
|
|
|
<url>https://repo.codemc.org/repository/maven-public</url>
|
2018-10-26 21:17:09 +02:00
|
|
|
</repository>
|
2016-04-19 00:15:30 +02:00
|
|
|
</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>
|
2019-10-20 21:06:35 +02:00
|
|
|
<version>1.14.4-R0.1-SNAPSHOT</version>
|
2016-05-18 14:12:36 +02:00
|
|
|
<scope>provided</scope>
|
2018-10-27 12:41:27 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>snakeyaml</artifactId>
|
|
|
|
<groupId>org.yaml</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2016-04-19 00:15:30 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.milkbowl.vault</groupId>
|
|
|
|
<artifactId>VaultAPI</artifactId>
|
2017-06-10 23:37:08 +02:00
|
|
|
<version>1.6</version>
|
2016-04-19 00:15:30 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2017-07-26 20:36:50 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>vg.civcraft.mc.citadel</groupId>
|
|
|
|
<artifactId>Citadel</artifactId>
|
|
|
|
<version>3.9.1</version>
|
2018-10-26 21:17:09 +02:00
|
|
|
<scope>provided</scope>
|
2018-10-27 12:41:27 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>*</artifactId>
|
|
|
|
<groupId>*</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2017-07-26 20:36:50 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>vg.civcraft.mc.civmodcore</groupId>
|
|
|
|
<artifactId>CivModCore</artifactId>
|
|
|
|
<version>1.6.0</version>
|
2018-10-26 21:17:09 +02:00
|
|
|
<scope>provided</scope>
|
2018-10-27 12:41:27 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>*</artifactId>
|
|
|
|
<groupId>*</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2017-07-26 20:36:50 +02:00
|
|
|
</dependency>
|
2016-04-19 00:15:30 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.sk89q</groupId>
|
|
|
|
<artifactId>worldguard</artifactId>
|
|
|
|
<version>6.1</version>
|
2016-05-18 14:12:36 +02:00
|
|
|
<scope>provided</scope>
|
2018-10-27 12:41:27 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>*</artifactId>
|
|
|
|
<groupId>*</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2016-04-19 00:15:30 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2018-10-26 21:17:09 +02:00
|
|
|
<groupId>com.sk89q.worldedit</groupId>
|
|
|
|
<artifactId>worldedit-bukkit</artifactId>
|
2019-06-02 06:32:59 +02:00
|
|
|
<version>7.0.0-SNAPSHOT</version>
|
2018-10-26 21:17:09 +02:00
|
|
|
<scope>provided</scope>
|
2018-10-27 12:41:27 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>*</artifactId>
|
|
|
|
<groupId>*</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sk89q.worldedit</groupId>
|
|
|
|
<artifactId>worldedit-core</artifactId>
|
2019-06-02 06:36:00 +02:00
|
|
|
<version>7.0.0-SNAPSHOT</version>
|
2018-10-27 12:41:27 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>*</artifactId>
|
|
|
|
<groupId>*</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2018-10-26 21:17:09 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sk89q.worldguard</groupId>
|
2018-10-27 12:41:27 +02:00
|
|
|
<artifactId>worldguard-core</artifactId>
|
2018-10-26 21:17:09 +02:00
|
|
|
<version>7.0.0-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
2018-10-27 12:41:27 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>*</artifactId>
|
|
|
|
<groupId>*</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2018-10-26 21:17:09 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.griefcraft</groupId>
|
|
|
|
<artifactId>entitylwc</artifactId>
|
|
|
|
<version>2.1</version>
|
2016-05-18 14:12:36 +02:00
|
|
|
<scope>provided</scope>
|
2016-04-19 00:15:30 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2018-10-26 21:17:09 +02:00
|
|
|
<groupId>com.github.TechFortress</groupId>
|
2016-04-19 00:15:30 +02:00
|
|
|
<artifactId>GriefPrevention</artifactId>
|
2019-01-17 12:30:12 +01:00
|
|
|
<version>16.11.5</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>
|
2019-01-17 12:30:12 +01:00
|
|
|
<version>1.13.2-SNAPSHOT-391</version>
|
2016-05-18 14:12:36 +02:00
|
|
|
<scope>provided</scope>
|
2018-10-26 21:17:09 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
2018-10-27 12:41:27 +02:00
|
|
|
<artifactId>*</artifactId>
|
|
|
|
<groupId>*</groupId>
|
2018-10-26 21:17:09 +02:00
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2016-05-18 14:12:36 +02:00
|
|
|
</dependency>
|
2019-11-06 19:44:52 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.TheBusyBiscuit</groupId>
|
|
|
|
<artifactId>Slimefun4</artifactId>
|
|
|
|
<version>4bb9abd247</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<!-- Contains proprietary api that we use for integration -->
|
|
|
|
<groupId>com.dre</groupId>
|
|
|
|
<artifactId>ExtPluginBridge</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2016-05-18 14:12:36 +02:00
|
|
|
<dependency>
|
2018-10-26 21:17:09 +02:00
|
|
|
<groupId>org.bstats</groupId>
|
|
|
|
<artifactId>bstats-bukkit</artifactId>
|
2019-10-11 12:23:59 +02:00
|
|
|
<version>1.5</version>
|
2018-10-26 21:17:09 +02:00
|
|
|
<scope>compile</scope>
|
2016-04-19 00:15:30 +02:00
|
|
|
</dependency>
|
2019-10-18 16:30:03 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains</groupId>
|
|
|
|
<artifactId>annotations</artifactId>
|
|
|
|
<version>16.0.2</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2016-04-19 00:15:30 +02:00
|
|
|
</dependencies>
|
2019-01-17 12:30:12 +01:00
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>file-repo</id>
|
|
|
|
<url>file:///var/tmp/MavenRepo</url>
|
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
2014-02-15 16:40:25 +01:00
|
|
|
</project>
|