2014-04-04 20:53:42 +02:00
|
|
|
<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>
|
|
|
|
|
2014-04-05 22:42:01 +02:00
|
|
|
<groupId>com.massivecraft</groupId>
|
2014-04-04 20:53:42 +02:00
|
|
|
<artifactId>Factions</artifactId>
|
2019-06-30 08:20:17 +02:00
|
|
|
<version>1.6.9.5-U0.2.1-1.4-BETA</version>
|
2014-04-04 20:53:42 +02:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
2019-06-29 03:49:46 +02:00
|
|
|
<name>SaberFactions</name>
|
2014-04-04 20:53:42 +02:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2018-12-21 03:15:43 +01:00
|
|
|
<timestamp>${maven.build.timestamp}</timestamp>
|
|
|
|
<maven.build.timestamp.format>yyyy-MM-dd--HH-mm</maven.build.timestamp.format>
|
2014-04-04 20:53:42 +02:00
|
|
|
</properties>
|
2014-04-04 20:55:21 +02:00
|
|
|
|
2014-04-04 20:53:42 +02:00
|
|
|
<build>
|
2018-12-21 03:15:43 +01:00
|
|
|
<defaultGoal>clean install deploy</defaultGoal>
|
2016-05-03 22:59:51 +02:00
|
|
|
<finalName>${project.name}</finalName>
|
|
|
|
<sourceDirectory>src/main/java</sourceDirectory>
|
2014-04-04 20:53:42 +02:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<filtering>true</filtering>
|
2016-05-03 22:59:51 +02:00
|
|
|
<directory>src/main/resources/</directory>
|
2014-04-04 20:53:42 +02:00
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2016-05-03 22:59:51 +02:00
|
|
|
<version>3.5.1</version>
|
2014-04-04 20:53:42 +02:00
|
|
|
<configuration>
|
2018-11-20 20:51:07 +01:00
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
2014-04-04 20:53:42 +02:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2014-10-13 21:10:18 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2016-05-03 22:59:51 +02:00
|
|
|
<version>2.4.3</version>
|
2014-10-13 21:10:18 +02:00
|
|
|
<configuration>
|
2014-11-02 20:15:11 +01:00
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
2014-10-13 21:10:18 +02:00
|
|
|
<relocations>
|
2015-05-25 22:46:18 +02:00
|
|
|
<relocation>
|
|
|
|
<pattern>mkremins.fanciful</pattern>
|
|
|
|
<shadedPattern>com.massivecraft.factions.shade.mkremins.fanciful</shadedPattern>
|
|
|
|
</relocation>
|
2014-10-25 20:22:41 +02:00
|
|
|
<relocation>
|
2014-10-27 01:13:08 +01:00
|
|
|
<pattern>com.google.gson</pattern>
|
|
|
|
<shadedPattern>com.massivecraft.factions.shade.com.google.gson</shadedPattern>
|
2014-10-25 20:22:41 +02:00
|
|
|
</relocation>
|
2018-04-01 16:13:23 +02:00
|
|
|
<relocation>
|
|
|
|
<pattern>com.darkblade12</pattern>
|
|
|
|
<shadedPattern>com.massivecraft.factions.shade.com.darkblade12</shadedPattern>
|
|
|
|
</relocation>
|
2014-10-13 21:10:18 +02:00
|
|
|
</relocations>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2018-12-16 06:05:13 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>2.3.2</version>
|
|
|
|
<configuration>
|
2019-06-29 03:49:46 +02:00
|
|
|
<finalName>SaberFactions</finalName>
|
2018-12-16 06:05:13 +01:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>3.0.1</version>
|
|
|
|
</plugin>
|
2019-07-04 04:30:58 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>com.github.wvengen</groupId>
|
|
|
|
<artifactId>proguard-maven-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
2019-07-04 05:24:32 +02:00
|
|
|
<goals>
|
|
|
|
<goal>proguard</goal>
|
|
|
|
</goals>
|
2019-07-04 04:30:58 +02:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<options>
|
|
|
|
<!-- General Settings -->
|
|
|
|
<option>-dontoptimize</option>
|
|
|
|
<option>-ignorewarnings</option>
|
|
|
|
|
|
|
|
<!-- All removes disabled -->
|
|
|
|
<!--option>-keepattributes Exceptions,InnerClasses,Signature,Deprecated,SourceFile,LineNumberTable,LocalVariable*Table,*Annotation*,Synthetic,EnclosingMethod</option-->
|
|
|
|
|
|
|
|
<!-- Boiled down to required options -->
|
|
|
|
<option>-keepattributes Signature,*Annotation*</option>
|
|
|
|
|
|
|
|
<!-- Keep the main class for the Plugin Loader to find -->
|
|
|
|
<option>-keep public class com.massivecraft.factions.SaberFactions</option>
|
|
|
|
|
|
|
|
<!-- These three are required for the json serializer, breaks if removed, oh and also for the config :) -->
|
|
|
|
<option>-keep class com.massivecraft.factions.Conf { *; }</option>
|
2019-07-04 05:24:32 +02:00
|
|
|
<option>-keepclassmembers enum * { *; }</option>
|
2019-07-04 04:30:58 +02:00
|
|
|
<option>-keep class com.massivecraft.factions.zcore.persist.json.** { *; }</option>
|
2019-07-06 03:20:46 +02:00
|
|
|
<option>-keep class com.massivecraft.factions.event.** { *; }</option>
|
|
|
|
<option>-keep class com.massivecraft.factions.Board { *; }</option>
|
|
|
|
<option>-keep class com.massivecraft.factions.Faction { *; }</option>
|
|
|
|
<option>-keep class com.massivecraft.factions.Factions { *; }</option>
|
|
|
|
<option>-keep class com.massivecraft.factions.FPlayer { *; }</option>
|
|
|
|
<option>-keep class com.massivecraft.factions.FPlayers { *; }</option>
|
2019-07-04 04:30:58 +02:00
|
|
|
<!-- keep the lib -->
|
|
|
|
<option>-keep class net.amoebaman.** { *; }</option>
|
|
|
|
|
|
|
|
<!-- suppress warnings -->
|
|
|
|
<option>-dontnote org.bukkit.**</option>
|
|
|
|
<option>-dontnote net.amoebaman.**</option>
|
|
|
|
<option>-dontnote net.minecraft.server.**</option>
|
|
|
|
</options>
|
|
|
|
<libs>
|
|
|
|
<lib>${java.home}/lib/rt.jar</lib>
|
|
|
|
</libs>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2014-04-04 20:53:42 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2014-10-13 21:10:18 +02:00
|
|
|
|
2014-04-04 20:53:42 +02:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2015-02-12 16:21:17 +01:00
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
2018-07-28 07:31:58 +02:00
|
|
|
<version>1.13-R0.1-SNAPSHOT</version>
|
2016-05-03 22:59:51 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
<exclusions>
|
2018-03-29 02:33:10 +02:00
|
|
|
<exclusion>
|
|
|
|
<artifactId>bungeecord-chat</artifactId>
|
|
|
|
<groupId>net.md-5</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>persistence-api</artifactId>
|
|
|
|
<groupId>javax.persistence</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
</exclusion>
|
2016-05-03 22:59:51 +02:00
|
|
|
</exclusions>
|
2014-04-04 20:53:42 +02:00
|
|
|
</dependency>
|
2014-04-04 21:35:35 +02:00
|
|
|
<dependency>
|
2014-10-09 18:04:11 +02:00
|
|
|
<groupId>net.milkbowl.vault</groupId>
|
|
|
|
<artifactId>VaultAPI</artifactId>
|
2016-08-12 01:16:46 +02:00
|
|
|
<version>1.6</version>
|
2014-04-04 21:35:35 +02:00
|
|
|
<scope>provided</scope>
|
2016-05-03 22:59:51 +02:00
|
|
|
<exclusions>
|
2018-04-01 16:13:23 +02:00
|
|
|
<exclusion>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
</exclusion>
|
2016-05-03 22:59:51 +02:00
|
|
|
</exclusions>
|
2014-04-04 21:35:35 +02:00
|
|
|
</dependency>
|
2014-04-05 22:42:01 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.sk89q</groupId>
|
|
|
|
<artifactId>worldguard</artifactId>
|
2016-05-03 22:59:51 +02:00
|
|
|
<version>6.1.1-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
<exclusions>
|
2018-04-01 16:13:23 +02:00
|
|
|
<exclusion>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>bukkit-classloader-check</artifactId>
|
|
|
|
<groupId>com.sk89q.spigot</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>commandbook</artifactId>
|
|
|
|
<groupId>com.sk89q</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>jsr305</artifactId>
|
|
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>js</artifactId>
|
|
|
|
<groupId>rhino</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>truezip</artifactId>
|
|
|
|
<groupId>de.schlichtherle</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>jchronic</artifactId>
|
|
|
|
<groupId>com.sk89q</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>worldedit</artifactId>
|
|
|
|
<groupId>com.sk89q</groupId>
|
|
|
|
</exclusion>
|
2016-05-03 22:59:51 +02:00
|
|
|
</exclusions>
|
2014-04-05 22:42:01 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2016-05-03 22:59:51 +02:00
|
|
|
<groupId>com.sk89q.worldedit</groupId>
|
|
|
|
<artifactId>worldedit-bukkit</artifactId>
|
|
|
|
<version>6.1.1-SNAPSHOT</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
<exclusions>
|
2018-04-01 16:13:23 +02:00
|
|
|
<exclusion>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>jsr305</artifactId>
|
|
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>bukkit-classloader-check</artifactId>
|
|
|
|
<groupId>org.sk89q.bukkit</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>dummypermscompat</artifactId>
|
|
|
|
<groupId>com.sk89q</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>jchronic</artifactId>
|
|
|
|
<groupId>com.sk89q</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>js</artifactId>
|
|
|
|
<groupId>rhino</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>truezip</artifactId>
|
|
|
|
<groupId>de.schlichtherle</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>jlibnoise</artifactId>
|
|
|
|
<groupId>com.sk89q.lib</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>paranamer</artifactId>
|
|
|
|
<groupId>com.thoughtworks.paranamer</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>snakeyaml</artifactId>
|
|
|
|
<groupId>org.yaml</groupId>
|
|
|
|
</exclusion>
|
2016-05-03 22:59:51 +02:00
|
|
|
</exclusions>
|
2014-04-05 22:42:01 +02:00
|
|
|
</dependency>
|
2014-05-19 18:44:15 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.ess3</groupId>
|
2017-12-19 10:14:57 +01:00
|
|
|
<artifactId>EssentialsX</artifactId>
|
2018-08-29 06:28:17 +02:00
|
|
|
<version>2.15.0.1</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${project.basedir}/dependencies/EssentialsX-2.15.0.1.jar</systemPath>
|
2014-05-19 18:44:15 +02:00
|
|
|
</dependency>
|
2014-07-08 20:54:22 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.ess3</groupId>
|
2017-12-19 10:14:57 +01:00
|
|
|
<artifactId>EssentialsXChat</artifactId>
|
|
|
|
<version>2.0.1</version>
|
2016-05-03 22:59:51 +02:00
|
|
|
<scope>provided</scope>
|
2016-05-03 23:21:30 +02:00
|
|
|
<exclusions>
|
2018-04-01 16:13:23 +02:00
|
|
|
<exclusion>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>Essentials</artifactId>
|
|
|
|
<groupId>net.ess3</groupId>
|
|
|
|
</exclusion>
|
2016-05-03 23:21:30 +02:00
|
|
|
</exclusions>
|
2014-07-08 20:54:22 +02:00
|
|
|
</dependency>
|
2015-05-25 22:46:18 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>mkremins</groupId>
|
|
|
|
<artifactId>fanciful</artifactId>
|
2017-12-19 20:09:44 +01:00
|
|
|
<version>0.4.0-SNAPSHOT</version>
|
2016-05-03 22:59:51 +02:00
|
|
|
<scope>compile</scope>
|
|
|
|
<exclusions>
|
2018-04-01 16:13:23 +02:00
|
|
|
<exclusion>
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
</exclusion>
|
2016-05-03 22:59:51 +02:00
|
|
|
</exclusions>
|
2015-05-25 22:46:18 +02:00
|
|
|
</dependency>
|
2014-12-05 06:04:00 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.dynmap</groupId>
|
|
|
|
<artifactId>dynmap</artifactId>
|
|
|
|
<version>2.0</version>
|
|
|
|
<scope>provided</scope>
|
2016-05-03 22:59:51 +02:00
|
|
|
<exclusions>
|
2018-04-01 16:13:23 +02:00
|
|
|
<exclusion>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>Permissions</artifactId>
|
|
|
|
<groupId>com.nijikokun.bukkit</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>bPermissions</artifactId>
|
|
|
|
<groupId>de.bananaco</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>EssentialsGroupManager</artifactId>
|
|
|
|
<groupId>org.anjocaido</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>spoutpluginapi</artifactId>
|
|
|
|
<groupId>org.getspout</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>PermissionsBukkit</artifactId>
|
|
|
|
<groupId>com.platymuus.bukkit.permissions</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>PermissionsEx</artifactId>
|
|
|
|
<groupId>ru.tehkode</groupId>
|
|
|
|
</exclusion>
|
2016-05-03 22:59:51 +02:00
|
|
|
</exclusions>
|
2014-12-05 06:04:00 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<version>10.0.1</version>
|
|
|
|
<scope>provided</scope>
|
2016-05-03 22:59:51 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>jsr305</artifactId>
|
|
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2014-12-05 06:04:00 +01:00
|
|
|
</dependency>
|
2014-10-25 20:22:41 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
2016-05-03 22:59:51 +02:00
|
|
|
<version>2.6.2</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2017-12-31 03:44:42 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>me.clip</groupId>
|
|
|
|
<artifactId>placeholderapi</artifactId>
|
2018-03-20 18:06:42 +01:00
|
|
|
<version>2.8.4</version>
|
2017-12-31 03:44:42 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2018-01-07 01:56:43 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>be.maximvdw</groupId>
|
|
|
|
<artifactId>MVdWPlaceholderAPI</artifactId>
|
|
|
|
<version>2.2.3-SNAPSHOT</version>
|
2018-02-13 01:45:41 +01:00
|
|
|
<scope>provided</scope>
|
2018-01-07 01:56:43 +01:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2018-04-09 05:13:41 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.coreprotect</groupId>
|
2019-06-29 23:07:48 +02:00
|
|
|
<artifactId>coreprotect</artifactId>
|
|
|
|
<version>2.15.0</version>
|
2018-04-09 05:13:41 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2018-12-27 02:22:06 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.SkriptLang</groupId>
|
|
|
|
<artifactId>Skript</artifactId>
|
|
|
|
<version>dev37c</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>*</groupId>
|
|
|
|
<artifactId>*</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
2014-04-04 20:53:42 +02:00
|
|
|
</dependencies>
|
2014-04-04 21:35:35 +02:00
|
|
|
|
2014-04-04 20:53:42 +02:00
|
|
|
<repositories>
|
2019-06-29 23:07:48 +02:00
|
|
|
<repository>
|
|
|
|
<id>net.coreprotect</id>
|
|
|
|
<url>http://maven.playpro.com/</url>
|
|
|
|
</repository>
|
2014-05-19 18:44:15 +02:00
|
|
|
<repository>
|
|
|
|
<id>ess-repo</id>
|
2017-12-19 10:14:57 +01:00
|
|
|
<url>http://ci.ender.zone/plugin/repository/everything/</url>
|
2014-05-19 18:44:15 +02:00
|
|
|
</repository>
|
2014-04-04 20:53:42 +02:00
|
|
|
<repository>
|
2015-02-12 16:21:17 +01:00
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
|
2014-04-04 20:53:42 +02:00
|
|
|
</repository>
|
2014-04-05 22:42:01 +02:00
|
|
|
<repository>
|
|
|
|
<id>maven.sk89q.com</id>
|
|
|
|
<url>http://maven.sk89q.com/repo/</url>
|
|
|
|
</repository>
|
2014-12-05 06:04:00 +01:00
|
|
|
<repository>
|
|
|
|
<id>repo.mikeprimm.com</id>
|
|
|
|
<url>http://repo.mikeprimm.com/</url>
|
|
|
|
</repository>
|
2017-12-31 03:44:42 +01:00
|
|
|
<repository>
|
|
|
|
<id>placeholderapi</id>
|
|
|
|
<url>http://repo.extendedclip.com/content/repositories/placeholderapi/</url>
|
|
|
|
</repository>
|
2018-01-07 01:56:43 +01:00
|
|
|
<repository>
|
|
|
|
<id>mvdw-software</id>
|
|
|
|
<url>http://repo.mvdw-software.be/content/groups/public/</url>
|
|
|
|
</repository>
|
2018-12-27 02:22:06 +01:00
|
|
|
<repository>
|
|
|
|
<id>papermc</id>
|
|
|
|
<url>https://papermc.io/repo/repository/maven-public/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>jitpack.io</id>
|
|
|
|
<url>https://jitpack.io</url>
|
|
|
|
</repository>
|
2014-04-04 20:53:42 +02:00
|
|
|
</repositories>
|
2018-12-16 06:05:13 +01:00
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>internal</id>
|
|
|
|
<url>file://${project.basedir}/mvn-repo</url>
|
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
2018-04-01 16:13:23 +02:00
|
|
|
</project>
|