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-12-31 07:15:30 +01:00
|
|
|
<version>1.6.9.5-U0.2.1-2.2.3-STABLE</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>
|
2019-08-06 13:20:53 +02:00
|
|
|
<version>3.8.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>
|
2019-08-06 13:20:53 +02:00
|
|
|
<version>3.2.1</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>
|
2019-12-03 03:32:09 +01:00
|
|
|
<relocation>
|
|
|
|
<pattern>net.dv8tion</pattern>
|
|
|
|
<shadedPattern>com.massivecraft.factions.shade.net.dv8tion</shadedPattern>
|
|
|
|
</relocation>
|
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>
|
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>
|
2019-09-14 21:13:01 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>me.lucko</groupId>
|
|
|
|
<artifactId>commodore</artifactId>
|
|
|
|
<version>1.3</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.mojang</groupId>
|
|
|
|
<artifactId>brigadier</artifactId>
|
|
|
|
<version>1.0.14</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2019-08-05 14:05:22 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.stefvanschie.inventoryframework</groupId>
|
|
|
|
<artifactId>IF</artifactId>
|
|
|
|
<version>0.5.8</version>
|
|
|
|
</dependency>
|
2014-04-04 20:53:42 +02:00
|
|
|
<dependency>
|
2015-02-12 16:21:17 +01:00
|
|
|
<groupId>org.spigotmc</groupId>
|
2020-01-02 03:04:02 +01:00
|
|
|
<artifactId>spigot</artifactId>
|
2019-12-24 15:19:43 +01:00
|
|
|
<version>1.15.1-R0.1-SNAPSHOT</version>
|
2016-05-03 22:59:51 +02:00
|
|
|
<scope>provided</scope>
|
2019-07-30 06:31:26 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
2018-03-29 02:33:10 +02:00
|
|
|
<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>
|
2019-11-07 13:09:45 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.ocpsoft.prettytime</groupId>
|
|
|
|
<artifactId>prettytime</artifactId>
|
|
|
|
<version>4.0.0.Final</version>
|
|
|
|
</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>
|
2019-09-29 10:39:30 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.dv8tion</groupId>
|
|
|
|
<artifactId>JDA</artifactId>
|
|
|
|
<version>3.8.3_463</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>club.minnced</groupId>
|
|
|
|
<artifactId>opus-java</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2014-04-05 22:42:01 +02:00
|
|
|
<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>
|
2019-08-05 14:05:22 +02:00
|
|
|
<version>28.0-jre</version>
|
2014-12-05 06:04:00 +01:00
|
|
|
<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>
|
2019-08-05 14:05:22 +02:00
|
|
|
<version>2.8.5</version>
|
2016-05-03 22:59:51 +02:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2017-12-31 03:44:42 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>me.clip</groupId>
|
|
|
|
<artifactId>placeholderapi</artifactId>
|
2019-08-06 14:01:09 +02:00
|
|
|
<version>2.8.5</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>
|
2019-08-30 13:36:55 +02:00
|
|
|
<version>3.0.1-SNAPSHOT</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${project.basedir}/dependencies/MVdWPlaceholderAPI.jar</systemPath>
|
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>
|
2019-11-07 13:09:45 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>me.rayzr522</groupId>
|
|
|
|
<artifactId>jsonmessage</artifactId>
|
|
|
|
<version>1.0.0</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
2019-09-29 10:39:30 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.jagrosh</groupId>
|
2019-09-29 13:24:37 +02:00
|
|
|
<artifactId>jda-utilities-commons</artifactId>
|
2019-09-29 10:39:30 +02:00
|
|
|
<version>2.1</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</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-09-29 10:39:30 +02:00
|
|
|
<repository>
|
|
|
|
<id>central</id>
|
|
|
|
<name>bintray</name>
|
|
|
|
<url>http://jcenter.bintray.com</url>
|
|
|
|
</repository>
|
2019-06-29 23:07:48 +02:00
|
|
|
<repository>
|
|
|
|
<id>net.coreprotect</id>
|
|
|
|
<url>http://maven.playpro.com/</url>
|
|
|
|
</repository>
|
2019-09-14 21:13:01 +02:00
|
|
|
<repository>
|
|
|
|
<id>codemc-repo</id>
|
|
|
|
<url>https://repo.codemc.org/repository/maven-public/</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>
|
2019-11-07 13:09:45 +01:00
|
|
|
<repository>
|
|
|
|
<id>org.ocpsoft.prettytime</id>
|
|
|
|
<url>https://mvnrepository.com/artifact/org.ocpsoft.prettytime/prettytime</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>rayzr-repo</id>
|
|
|
|
<url>https://cdn.rawgit.com/Rayzr522/maven-repo/master/</url>
|
|
|
|
</repository>
|
2014-04-05 22:42:01 +02:00
|
|
|
<repository>
|
|
|
|
<id>maven.sk89q.com</id>
|
|
|
|
<url>http://maven.sk89q.com/repo/</url>
|
|
|
|
</repository>
|
2019-09-29 10:39:30 +02:00
|
|
|
<repository>
|
|
|
|
<id>jcenter</id>
|
|
|
|
<name>jcenter-bintray</name>
|
|
|
|
<url>https://jcenter.bintray.com</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>
|
2019-08-30 13:30:19 +02:00
|
|
|
<name>MVdW Public Repositories</name>
|
2018-01-07 01:56:43 +01:00
|
|
|
<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>
|
2019-09-14 21:13:01 +02:00
|
|
|
<repository>
|
|
|
|
<id>minecraft-libraries</id>
|
|
|
|
<name>Minecraft Libraries</name>
|
|
|
|
<url>https://libraries.minecraft.net</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>
|