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

168 lines
5.7 KiB
XML
Raw Normal View History

2017-07-27 17:21:36 +00:00
<?xml version="1.0" encoding="UTF-8"?>
2018-05-05 17:42:27 +00: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">
2017-07-27 17:21:36 +00:00
<modelVersion>4.0.0</modelVersion>
<groupId>me.mrCookieSlime</groupId>
<artifactId>Slimefun</artifactId>
<version>4.2</version>
2019-10-01 11:14:50 +00:00
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-05-05 17:42:27 +00:00
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2017-07-27 17:21:36 +00:00
</properties>
2019-10-01 11:14:50 +00:00
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>
2019-10-14 18:50:57 +00:00
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
2017-07-27 17:21:36 +00:00
<repository>
<id>worldedit-worldguard-repo</id>
2019-03-26 20:17:33 +00:00
<url>https://maven.sk89q.com/repo/</url>
2017-07-27 17:21:36 +00:00
</repository>
2018-05-05 17:42:27 +00:00
<repository>
2019-03-26 20:17:33 +00:00
<id>coreprotect-repo</id>
<url>https://maven.playpro.com/</url>
2018-05-05 17:42:27 +00:00
</repository>
<repository>
<id>CodeMC</id>
<url>https://repo.codemc.org/repository/maven-public</url>
</repository>
<repository>
<id>placeholderapi-repo</id>
<url>http://repo.extendedclip.com/content/repositories/placeholderapi/</url>
</repository>
2017-07-27 17:21:36 +00:00
</repositories>
2017-07-27 17:21:36 +00:00
<build>
<sourceDirectory>${project.basedir}/src</sourceDirectory>
2017-11-27 14:49:16 +00:00
<finalName>${project.name} v${project.version}</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.1</version>
<configuration>
<relocations>
<relocation>
<pattern>org.bstats</pattern>
<shadedPattern>me.mrCookieSlime.Slimefun.bstats</shadedPattern>
</relocation>
<relocation>
<pattern>io.github.thebusybiscuit.cscorelib2</pattern>
<shadedPattern>me.mrCookieSlime.Slimefun.cscorelib2</shadedPattern>
</relocation>
</relocations>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
2017-07-27 17:21:36 +00:00
<resources>
<resource>
<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>
<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.14.4-R0.1-SNAPSHOT</version>
2019-02-20 11:20:44 +00:00
<scope>provided</scope>
2017-07-27 17:21:36 +00:00
</dependency>
<dependency>
2018-05-05 17:42:27 +00:00
<groupId>com.github.TheBusyBiscuit</groupId>
<artifactId>CS-CoreLib</artifactId>
<version>6e17183656</version>
<scope>provided</scope>
2018-05-05 17:42:27 +00:00
</dependency>
<dependency>
<groupId>com.github.thebusybiscuit</groupId>
<artifactId>CS-CoreLib2</artifactId>
<version>0.6.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.bstats</groupId>
<artifactId>bstats-bukkit</artifactId>
<version>1.5</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.sk89q.worldedit</groupId>
<artifactId>worldedit-bukkit</artifactId>
<version>7.0.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>me.clip</groupId>
<artifactId>placeholderapi</artifactId>
<version>2.10.4</version>
<scope>provided</scope>
</dependency>
2017-07-27 17:21:36 +00:00
<dependency>
2018-05-05 17:42:27 +00:00
<groupId>me.minebuilders</groupId>
<artifactId>clearlag-core</artifactId>
<version>2.9.7</version>
2018-05-05 17:42:27 +00:00
<scope>system</scope>
<systemPath>${project.basedir}/lib/Clearlag.jar</systemPath>
</dependency>
2017-07-27 17:21:36 +00:00
<dependency>
<groupId>net.coreprotect</groupId>
2019-03-26 20:17:33 +00:00
<artifactId>coreprotect</artifactId>
<version>2.16.3</version>
<scope>provided</scope>
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>
<version>2.0</version>
2018-05-05 17:42:27 +00:00
<scope>system</scope>
<systemPath>${project.basedir}/lib/EmeraldEnchants v2.0.jar</systemPath>
2017-07-27 17:21:36 +00:00
</dependency>
<dependency>
2018-05-05 17:42:27 +00:00
<groupId>me.mrCookieSlime</groupId>
<artifactId>ExoticGarden</artifactId>
<version>1.2.0</version>
2018-05-05 17:42:27 +00:00
<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>