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>
|
2019-08-16 15:47:31 +02:00
|
|
|
<version>4.13.1</version>
|
2017-05-12 18:31:39 +02:00
|
|
|
<name>Jobs</name>
|
|
|
|
<url>http://maven.apache.org</url>
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<!-- Spigot -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
2019-07-20 12:17:21 +02:00
|
|
|
<version>1.14.4-R0.1-SNAPSHOT</version>
|
2017-05-12 18:31:39 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<!-- MyPet -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>de.Keyle.MyPet</groupId>
|
|
|
|
<artifactId>MyPet</artifactId>
|
2019-08-11 14:36:43 +02:00
|
|
|
<version>3.7</version>
|
2017-05-12 18:31:39 +02:00
|
|
|
<scope>system</scope>
|
2019-08-11 14:36:43 +02:00
|
|
|
<systemPath>${basedir}/libs/MyPet-3.7.jar</systemPath>
|
2017-05-12 18:31:39 +02:00
|
|
|
</dependency>
|
|
|
|
<!-- McMMO -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.gmail.nossr50.mcMMO</groupId>
|
|
|
|
<artifactId>mcMMO</artifactId>
|
2019-02-02 21:11:21 +01:00
|
|
|
<version>2.1.2</version>
|
2017-05-12 18:31:39 +02:00
|
|
|
<scope>system</scope>
|
2019-02-02 21:11:21 +01:00
|
|
|
<systemPath>${basedir}/libs/mcMMO2.1.2.jar</systemPath>
|
2017-05-12 18:31:39 +02:00
|
|
|
</dependency>
|
|
|
|
<!-- Vault -->
|
2018-09-01 09:07:22 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.milkbowl.vault</groupId>
|
|
|
|
<artifactId>Vault</artifactId>
|
2018-09-17 17:38:58 +02:00
|
|
|
<version>1.6.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>
|
2019-05-22 11:29:22 +02:00
|
|
|
<!-- MythicMobs 2 -->
|
2017-05-12 18:31:39 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.elseland.xikage</groupId>
|
|
|
|
<artifactId>MythicMobs</artifactId>
|
|
|
|
<version>2.4.5</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${basedir}/libs/MythicMobs-2.4.5.jar</systemPath>
|
|
|
|
</dependency>
|
2019-05-22 11:29:22 +02:00
|
|
|
<!-- MythicMobs 4 -->
|
2017-05-12 18:31:39 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.lumine.xikage.mythicmobs</groupId>
|
|
|
|
<artifactId>MythicMobs</artifactId>
|
2019-08-14 19:18:57 +02:00
|
|
|
<version>4.6.5</version>
|
2017-05-12 18:31:39 +02:00
|
|
|
<scope>system</scope>
|
2019-08-14 19:18:57 +02:00
|
|
|
<systemPath>${basedir}/libs/MythicMobs-4.6.5.jar</systemPath>
|
2017-05-12 18:31:39 +02:00
|
|
|
</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>
|
|
|
|
</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>
|
|
|
|
<version>7.0.1-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>
|
|
|
|
</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</artifactId>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>bukkit-classloader-check</artifactId>
|
|
|
|
<groupId>org.sk89q.bukkit</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2018-10-12 09:48:13 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2018-12-27 15:10:11 +01:00
|
|
|
<groupId>com.sk89q.worldedit</groupId>
|
|
|
|
<artifactId>worldedit-core</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</artifactId>
|
|
|
|
<groupId>org.bukkit</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>bukkit-classloader-check</artifactId>
|
|
|
|
<groupId>org.sk89q.bukkit</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2018-09-01 09:07:22 +02:00
|
|
|
</dependency>
|
2018-12-25 11:52:38 +01:00
|
|
|
<dependency>
|
2018-12-27 15:10:11 +01:00
|
|
|
<groupId>me.clip</groupId>
|
|
|
|
<artifactId>placeholderapi</artifactId>
|
2019-09-20 16:20:43 +02:00
|
|
|
<version>2.10.4</version>
|
2018-12-27 15:10:11 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2017-05-12 18:31:39 +02:00
|
|
|
</dependencies>
|
|
|
|
<repositories>
|
2018-09-09 12:32:43 +02:00
|
|
|
<!-- WorldGuard & WorldEdit -->
|
2018-09-01 09:07:22 +02:00
|
|
|
<repository>
|
|
|
|
<id>sk89q-repo</id>
|
|
|
|
<url>http://maven.sk89q.com/repo/</url>
|
|
|
|
</repository>
|
2017-05-12 18:31:39 +02:00
|
|
|
<!-- Spigot -->
|
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
|
|
|
|
</repository>
|
|
|
|
<!-- Vault -->
|
|
|
|
<repository>
|
|
|
|
<id>vault-repo</id>
|
|
|
|
<url>http://nexus.hc.to/content/repositories/pub_releases/</url>
|
|
|
|
</repository>
|
2018-10-12 09:52:47 +02:00
|
|
|
<!-- bStats -->
|
|
|
|
<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>
|
2018-12-25 11:52:38 +01:00
|
|
|
<!-- PlaceholderAPI -->
|
|
|
|
<repository>
|
2018-12-27 15:10:11 +01:00
|
|
|
<id>placeholderapi</id>
|
|
|
|
<url>http://repo.extendedclip.com/content/repositories/placeholderapi/</url>
|
|
|
|
</repository>
|
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>
|
|
|
|
<version>2.4</version>
|
|
|
|
<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>
|
2019-08-16 15:47:53 +02:00
|
|
|
<!-- <plugin> -->
|
|
|
|
<!-- <groupId>org.apache.maven.plugins</groupId> -->
|
|
|
|
<!-- <artifactId>maven-jar-plugin</artifactId> -->
|
|
|
|
<!-- <version>2.3.1</version> -->
|
|
|
|
<!-- <configuration> -->
|
|
|
|
<!-- <outputDirectory>C:\Users\Arte\Desktop\Server 1.14\plugins</outputDirectory> -->
|
|
|
|
<!-- </configuration> -->
|
|
|
|
<!-- </plugin> -->
|
2017-05-12 18:31:39 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2019-02-22 19:31:57 +01:00
|
|
|
</project>
|