1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-19 19:25:48 +00:00
Slimefun4/pom.xml

111 lines
3.8 KiB
XML
Raw Normal View History

2017-07-27 17:21:36 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<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>
<groupId>me.mrCookieSlime</groupId>
<artifactId>Slimefun</artifactId>
2018-03-05 20:25:16 +00:00
<version>4.1.14</version>
2017-07-27 17:21:36 +00:00
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
2018-01-06 10:31:49 +00:00
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2017-07-27 17:21:36 +00:00
</properties>
2017-07-27 17:21:36 +00:00
<repositories>
<repository>
<id>paper-repo</id>
<url>https://repo.destroystokyo.com/repository/maven-public/</url>
</repository>
<repository>
2017-11-25 21:07:17 +00:00
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
2017-07-27 17:21:36 +00:00
</repository>
<repository>
<id>worldedit-worldguard-repo</id>
<url>http://maven.sk89q.com/repo/</url>
</repository>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
2017-11-27 14:49:16 +00:00
<repository>
<id>robomwm-repo</id>
<url>https://dl.bintray.com/robomwm/maven</url>
</repository>
2017-07-27 17:21:36 +00:00
</repositories>
2017-07-27 17:21:36 +00:00
<build>
<!--Maintain existing structure (as much as possible)-->
<sourceDirectory>${project.basedir}/src</sourceDirectory>
<!--doesn't exist but here if you ever do make such a directory-->
<testSourceDirectory>${project.basedir}/tests/java</testSourceDirectory>
<testResources>
<testResource>
<directory>${project.basedir}/tests/resources</directory>
</testResource>
</testResources>
2017-11-27 14:49:16 +00:00
<finalName>${project.name} v${project.version}</finalName>
2017-07-27 17:21:36 +00:00
<resources>
<resource>
<!-- Use plugin.yml in the src directory-->
<directory>${basedir}/src</directory>
<filtering>true</filtering>
<includes>
<include>plugin.yml</include>
2018-01-06 10:31:49 +00:00
<include>config.yml</include>
2017-07-27 17:21:36 +00:00
</includes>
</resource>
</resources>
</build>
2017-07-27 17:21:36 +00:00
<dependencies>
<!--Bukkit API-->
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
2017-11-26 21:37:31 +00:00
<version>1.12-R0.1-SNAPSHOT</version>
2017-07-27 17:21:36 +00:00
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.sk89q.worldedit</groupId>
<artifactId>worldedit-bukkit</artifactId>
2017-11-26 21:37:31 +00:00
<version>6.1.1-SNAPSHOT</version>
2017-07-27 17:21:36 +00:00
</dependency>
<dependency>
<groupId>com.github.TheBusyBiscuit</groupId>
<artifactId>CS-CoreLib</artifactId>
2018-04-25 22:01:51 +00:00
<version>v1.5.18</version>
2017-07-27 17:21:36 +00:00
</dependency>
<dependency>
<groupId>me.minebuilders</groupId>
<artifactId>clearlag-core</artifactId>
2018-04-17 11:47:55 +00:00
<version>2.9.7</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/Clearlag.jar</systemPath>
2017-07-27 17:21:36 +00:00
</dependency>
<dependency>
<groupId>net.coreprotect</groupId>
<artifactId>CoreProtect</artifactId>
2017-11-26 21:37:31 +00:00
<version>2.14.2</version>
2017-07-27 17:21:36 +00:00
</dependency>
<dependency>
2017-07-28 21:20:58 +00:00
<groupId>me.mrCookieSlime</groupId>
2017-07-27 17:21:36 +00:00
<artifactId>EmeraldEnchants</artifactId>
2017-11-27 14:49:16 +00:00
<version>2.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/EmeraldEnchants v2.0.jar</systemPath>
2017-07-27 17:21:36 +00:00
</dependency>
<dependency>
2017-11-27 14:49:16 +00:00
<groupId>me.mrCookieSlime</groupId>
<artifactId>ExoticGarden</artifactId>
2017-11-27 14:49:16 +00:00
<version>1.2.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/ExoticGarden v1.2.0.jar</systemPath>
</dependency>
2017-07-27 17:21:36 +00:00
</dependencies>
2017-11-26 22:10:31 +00:00
</project>