2017-05-12 18:31:39 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
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>Jobs</groupId>
|
|
|
|
<artifactId>jobs</artifactId>
|
2023-02-17 13:42:08 +01:00
|
|
|
<version>5.1.2.2</version>
|
2017-05-12 18:31:39 +02:00
|
|
|
<name>Jobs</name>
|
|
|
|
<url>http://maven.apache.org</url>
|
2019-12-07 14:06:50 +01:00
|
|
|
|
2017-05-12 18:31:39 +02:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
2019-12-07 14:06:50 +01:00
|
|
|
|
2017-05-12 18:31:39 +02:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2021-06-20 16:22:03 +02:00
|
|
|
<groupId>io.papermc.paper</groupId>
|
2021-02-26 08:15:39 +01:00
|
|
|
<artifactId>paper-api</artifactId>
|
2021-09-15 16:31:53 +02:00
|
|
|
<version>1.17.1-R0.1-SNAPSHOT</version>
|
2017-05-12 18:31:39 +02:00
|
|
|
<scope>provided</scope>
|
2021-06-20 16:22:03 +02:00
|
|
|
<exclusions>
|
2021-02-26 08:15:39 +01:00
|
|
|
<exclusion>
|
|
|
|
<groupId>org.ow2.asm</groupId>
|
|
|
|
<artifactId>asm-commons</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.google.code.findbugs</groupId>
|
|
|
|
<artifactId>jsr305</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.googlecode.json-simple</groupId>
|
|
|
|
<artifactId>json-simple</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.ow2.asm</groupId>
|
|
|
|
<artifactId>asm</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2017-05-12 18:31:39 +02:00
|
|
|
</dependency>
|
2021-05-05 11:57:55 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.mojang</groupId>
|
|
|
|
<artifactId>authlib</artifactId>
|
|
|
|
<version>1.5.21</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2017-05-12 18:31:39 +02:00
|
|
|
<!-- McMMO -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.gmail.nossr50.mcMMO</groupId>
|
|
|
|
<artifactId>mcMMO</artifactId>
|
2021-02-15 16:58:27 +01:00
|
|
|
<version>2.1.175-SNAPSHOT</version>
|
2017-05-12 18:31:39 +02:00
|
|
|
<scope>system</scope>
|
2021-02-15 16:58:27 +01:00
|
|
|
<systemPath>${basedir}/libs/mcMMO-2.1.175-SNAPSHOT.jar</systemPath>
|
2017-05-12 18:31:39 +02:00
|
|
|
</dependency>
|
|
|
|
<!-- Vault -->
|
2018-09-01 09:07:22 +02:00
|
|
|
<dependency>
|
2021-04-10 16:05:10 +02:00
|
|
|
<groupId>com.github.MilkBowl</groupId>
|
2020-10-26 17:38:04 +01:00
|
|
|
<artifactId>VaultAPI</artifactId>
|
|
|
|
<version>1.7</version>
|
2018-09-01 09:07:22 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>craftbukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2020-09-22 17:24:39 +02:00
|
|
|
<!-- MythicMobs -->
|
2017-05-12 18:31:39 +02:00
|
|
|
<dependency>
|
2020-08-27 09:47:17 +02:00
|
|
|
<groupId>io.lumine.xikage</groupId>
|
2017-05-12 18:31:39 +02:00
|
|
|
<artifactId>MythicMobs</artifactId>
|
2022-03-21 13:59:24 +01:00
|
|
|
<version>4.11.0</version>
|
2020-08-27 09:47:17 +02:00
|
|
|
<scope>provided</scope>
|
2017-05-12 18:31:39 +02:00
|
|
|
</dependency>
|
2022-03-21 13:59:24 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.lumine</groupId>
|
|
|
|
<artifactId>Mythic-Dist</artifactId>
|
2022-06-24 15:50:21 +02:00
|
|
|
<version>5.1.0-SNAPSHOT</version>
|
2022-03-21 13:59:24 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2019-03-25 17:41:08 +01:00
|
|
|
<!-- WorldGuard old version -->
|
2017-06-22 15:40:13 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.sk89q</groupId>
|
|
|
|
<artifactId>worldguard</artifactId>
|
|
|
|
<version>6.1</version>
|
2020-04-03 13:25:29 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>com.sk89q</groupId>
|
|
|
|
<artifactId>commandbook</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
</exclusion>
|
2020-11-24 20:52:32 +01:00
|
|
|
<exclusion>
|
|
|
|
<groupId>com.sk89q.spigot</groupId>
|
|
|
|
<artifactId>bukkit-classloader-check</artifactId>
|
|
|
|
</exclusion>
|
2020-04-03 13:25:29 +02:00
|
|
|
</exclusions>
|
2017-06-22 15:40:13 +02:00
|
|
|
</dependency>
|
2019-03-25 17:41:08 +01:00
|
|
|
<!-- WorldGuard new version -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sk89q.worldguard</groupId>
|
2019-08-19 18:31:29 +02:00
|
|
|
<artifactId>worldguard-bukkit</artifactId>
|
2020-02-22 12:43:02 +01:00
|
|
|
<version>7.0.2-SNAPSHOT</version>
|
2019-03-25 17:41:08 +01:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>bukkit-classloader-check</artifactId>
|
|
|
|
<groupId>org.sk89q.bukkit</groupId>
|
|
|
|
</exclusion>
|
2020-04-03 13:25:29 +02:00
|
|
|
<exclusion>
|
|
|
|
<groupId>com.sk89q</groupId>
|
|
|
|
<artifactId>commandbook</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bstats</groupId>
|
|
|
|
<artifactId>bstats-bukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>io.papermc</groupId>
|
|
|
|
<artifactId>paperlib</artifactId>
|
|
|
|
</exclusion>
|
2019-03-25 17:41:08 +01:00
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2018-09-01 09:07:22 +02:00
|
|
|
<!-- WorldEdit -->
|
|
|
|
<dependency>
|
2018-12-27 15:10:11 +01:00
|
|
|
<groupId>com.sk89q.worldedit</groupId>
|
|
|
|
<artifactId>worldedit-bukkit</artifactId>
|
2019-08-19 18:31:29 +02:00
|
|
|
<version>7.1.0-SNAPSHOT</version>
|
2018-12-27 15:10:11 +01:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>bukkit-classloader-check</artifactId>
|
|
|
|
<groupId>org.sk89q.bukkit</groupId>
|
|
|
|
</exclusion>
|
2020-04-03 13:25:29 +02:00
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bstats</groupId>
|
|
|
|
<artifactId>bstats-bukkit</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>io.papermc</groupId>
|
|
|
|
<artifactId>paperlib</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>
|
|
|
|
com.sk89q.worldedit.worldedit-libs
|
|
|
|
</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
</exclusion>
|
2020-07-29 10:50:01 +02:00
|
|
|
<exclusion>
|
|
|
|
<groupId>net.java.truevfs</groupId>
|
|
|
|
<artifactId>
|
|
|
|
truevfs-profile-default_2.13
|
|
|
|
</artifactId>
|
|
|
|
</exclusion>
|
2020-11-24 20:52:32 +01:00
|
|
|
<exclusion>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-slf4j-impl</artifactId>
|
|
|
|
</exclusion>
|
2021-04-02 15:14:03 +02:00
|
|
|
<exclusion>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
<artifactId>bukkit</artifactId>
|
|
|
|
</exclusion>
|
2018-12-27 15:10:11 +01:00
|
|
|
</exclusions>
|
2018-10-12 09:48:13 +02:00
|
|
|
</dependency>
|
2020-10-26 17:38:04 +01:00
|
|
|
<!-- PlaceholderAPI -->
|
2018-12-25 11:52:38 +01:00
|
|
|
<dependency>
|
2018-12-27 15:10:11 +01:00
|
|
|
<groupId>me.clip</groupId>
|
2020-08-02 18:53:36 +02:00
|
|
|
<artifactId>placeholderapi</artifactId>
|
2020-08-23 20:59:42 +02:00
|
|
|
<version>2.10.9</version>
|
2018-12-27 15:10:11 +01:00
|
|
|
<scope>provided</scope>
|
2020-07-29 10:50:01 +02:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>me.rayzr522</groupId>
|
|
|
|
<artifactId>jsonmessage</artifactId>
|
|
|
|
</exclusion>
|
2020-11-24 20:52:32 +01:00
|
|
|
<exclusion>
|
|
|
|
<groupId>org.jetbrains</groupId>
|
|
|
|
<artifactId>annotations</artifactId>
|
|
|
|
</exclusion>
|
2020-07-29 10:50:01 +02:00
|
|
|
</exclusions>
|
2018-12-27 15:10:11 +01:00
|
|
|
</dependency>
|
2021-06-20 16:22:03 +02:00
|
|
|
<!-- CMILib -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.Zrips</groupId>
|
|
|
|
<artifactId>CMILib</artifactId>
|
|
|
|
<version>latest</version>
|
|
|
|
<scope>system</scope>
|
2023-02-13 09:26:27 +01:00
|
|
|
<systemPath>${basedir}/libs/CMILib1.2.4.5.jar</systemPath>
|
2021-06-20 16:22:03 +02:00
|
|
|
</dependency>
|
2020-10-26 17:38:04 +01:00
|
|
|
<!-- WildStacker -->
|
2020-09-21 17:42:20 +02:00
|
|
|
<dependency>
|
2021-01-14 11:29:57 +01:00
|
|
|
<groupId>com.bgsoftware</groupId>
|
2020-09-21 17:42:20 +02:00
|
|
|
<artifactId>WildStackerAPI</artifactId>
|
2021-01-14 11:29:57 +01:00
|
|
|
<version>latest</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${basedir}/libs/WildStackerAPI-latest.jar</systemPath>
|
2020-09-21 17:42:20 +02:00
|
|
|
</dependency>
|
2020-10-26 17:38:04 +01:00
|
|
|
<!-- StackMob -->
|
2020-09-21 17:42:20 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.Nathat23</groupId>
|
|
|
|
<artifactId>StackMob-5</artifactId>
|
2021-04-02 15:14:03 +02:00
|
|
|
<version>5.5.3</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${basedir}/libs/StackMob-5.5.3.jar</systemPath>
|
2020-09-21 17:42:20 +02:00
|
|
|
</dependency>
|
2020-10-26 17:38:04 +01:00
|
|
|
<!-- MyPet -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>de.keyle</groupId>
|
|
|
|
<artifactId>mypet</artifactId>
|
2021-03-26 16:14:58 +01:00
|
|
|
<version>3.11-SNAPSHOT</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<!-- Temporary solution for replacing repository -->
|
|
|
|
<systemPath>${basedir}/libs/mypet-3.11-20210318.180552-1.jar</systemPath>
|
2020-10-26 17:38:04 +01:00
|
|
|
</dependency>
|
2017-05-12 18:31:39 +02:00
|
|
|
</dependencies>
|
|
|
|
<repositories>
|
2020-10-26 17:38:04 +01:00
|
|
|
<!-- MythicMobs -->
|
|
|
|
<repository>
|
|
|
|
<id>nexus</id>
|
|
|
|
<name>Lumine Releases</name>
|
|
|
|
<url>https://mvn.lumine.io/repository/maven-public/</url>
|
|
|
|
</repository>
|
|
|
|
<!-- WorldGuard & WorldEdit -->
|
|
|
|
<repository>
|
|
|
|
<id>sk89q-repo</id>
|
2021-04-10 16:05:10 +02:00
|
|
|
<url>https://maven.enginehub.org/repo/</url>
|
2020-10-26 17:38:04 +01:00
|
|
|
</repository>
|
2018-10-12 09:52:47 +02:00
|
|
|
<repository>
|
2018-12-27 15:10:11 +01:00
|
|
|
<id>jitpack.io</id>
|
|
|
|
<url>https://jitpack.io</url>
|
2018-10-12 09:52:47 +02:00
|
|
|
</repository>
|
2018-10-12 09:54:24 +02:00
|
|
|
<!-- papermc -->
|
|
|
|
<repository>
|
2018-12-27 15:10:11 +01:00
|
|
|
<id>papermc</id>
|
|
|
|
<url>https://papermc.io/repo/repository/maven-public/</url>
|
|
|
|
</repository>
|
2021-05-05 11:57:55 +02:00
|
|
|
<repository>
|
|
|
|
<id>minecraft-repo</id>
|
|
|
|
<url>https://libraries.minecraft.net/</url>
|
|
|
|
</repository>
|
2018-12-25 11:52:38 +01:00
|
|
|
<!-- PlaceholderAPI -->
|
|
|
|
<repository>
|
2018-12-27 15:10:11 +01:00
|
|
|
<id>placeholderapi</id>
|
2021-04-10 16:05:10 +02:00
|
|
|
<url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
|
2018-12-27 15:10:11 +01:00
|
|
|
</repository>
|
2020-01-26 17:50:57 +01:00
|
|
|
<!-- MyPet -->
|
2021-05-05 11:57:55 +02:00
|
|
|
<!--<repository> <id>mypet-repo</id> <url>https://repo.mypet-plugin.de/</url>
|
|
|
|
</repositor> -->
|
2017-05-12 18:31:39 +02:00
|
|
|
</repositories>
|
|
|
|
<!-- Builds Plugin -->
|
|
|
|
<build>
|
|
|
|
<defaultGoal>clean package</defaultGoal>
|
|
|
|
<finalName>Jobs${project.version}</finalName>
|
|
|
|
<sourceDirectory>${basedir}/src/main/java</sourceDirectory>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<targetPath>.</targetPath>
|
|
|
|
<directory>${basedir}/src/main/resources/</directory>
|
2018-12-27 15:10:11 +01:00
|
|
|
<filtering>true</filtering>
|
2017-05-12 18:31:39 +02:00
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<plugins>
|
|
|
|
<!-- Make a Jar -->
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2020-11-13 08:04:03 +01:00
|
|
|
<version>3.8.1</version>
|
2017-05-12 18:31:39 +02:00
|
|
|
<configuration>
|
2019-02-28 19:16:53 +01:00
|
|
|
<source>1.8</source>
|
|
|
|
<target>1.8</target>
|
2017-05-12 18:31:39 +02:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2022-03-07 13:35:58 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>2.3.1</version>
|
|
|
|
<configuration>
|
2023-01-06 13:30:50 +01:00
|
|
|
<outputDirectory>D:\MC\Server 1.19\plugins\</outputDirectory>
|
2022-03-07 13:35:58 +01:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2017-05-12 18:31:39 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2019-02-22 19:31:57 +01:00
|
|
|
</project>
|