ChestSort/pom.xml

182 lines
4.8 KiB
XML
Raw Normal View History

2019-05-02 14:42:20 +02:00
<?xml version="1.0" encoding="UTF-8"?>
2019-04-25 16:25:57 +02:00
<project xmlns="http://maven.apache.org/POM/4.0.0"
2019-05-02 14:42:20 +02:00
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">
2019-04-25 16:25:57 +02:00
<modelVersion>4.0.0</modelVersion>
2020-06-10 18:21:41 +02:00
<groupId>de.jeff_media</groupId>
<artifactId>ChestSort</artifactId>
2020-07-12 03:58:40 +02:00
<name>ChestSort</name>
2019-04-29 17:55:10 +02:00
<url>https://www.chestsort.de</url>
2020-06-10 18:21:41 +02:00
<description>Automatically sorts your chests!</description>
2020-08-29 15:36:11 +02:00
<version>8.17.4</version>
2020-06-10 18:21:41 +02:00
<packaging>jar</packaging>
2019-04-25 16:25:57 +02:00
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
</properties>
<build>
2020-06-10 18:21:41 +02:00
2019-04-25 16:25:57 +02:00
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
2019-05-02 14:42:20 +02:00
<version>3.1.0</version>
2019-04-25 16:25:57 +02:00
<configuration>
<finalName>ChestSort</finalName>
</configuration>
</plugin>
2019-05-02 14:42:20 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<relocations>
2020-06-23 22:52:08 +02:00
<relocation>
<pattern>de.jeff_media.PluginUpdateChecker</pattern>
<shadedPattern>de.jeff_media.ChestSort</shadedPattern>
</relocation>
2019-05-02 14:42:20 +02:00
<relocation>
<pattern>org.bstats</pattern>
2020-06-23 22:52:08 +02:00
<shadedPattern>de.jeff_media.ChestSort</shadedPattern>
2019-05-02 14:42:20 +02:00
</relocation>
</relocations>
2020-07-12 02:51:51 +02:00
<artifactSet>
<excludes>
<exclude>org.jetbrains:*</exclude>
<exclude>org.intellij.lang:*</exclude>
</excludes>
</artifactSet>
2019-05-02 14:42:20 +02:00
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
2019-04-25 16:25:57 +02:00
</plugins>
2020-06-10 18:21:41 +02:00
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ftp</artifactId>
<version>3.4.1</version>
</extension>
</extensions>
2019-04-25 16:25:57 +02:00
</build>
<repositories>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
2020-07-24 16:33:52 +02:00
<repository>
<id>placeholderapi</id>
<url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
</repository>
2019-04-25 16:25:57 +02:00
<repository>
<id>bungeecord-repo</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
2019-05-02 14:42:20 +02:00
<repository>
<id>CodeMC</id>
<url>https://repo.codemc.org/repository/maven-public</url>
</repository>
2020-05-23 23:27:03 +02:00
<repository>
<id>pcgf-repo</id>
<url>https://repo.pcgamingfreaks.at/repository/maven-everything</url>
</repository>
2020-06-23 20:35:43 +02:00
<repository>
<id>jeff-media-gbr</id>
<url>https://repo.jeff-media.de/maven2</url>
</repository>
2019-04-25 16:25:57 +02:00
</repositories>
<dependencies>
2020-07-24 16:33:52 +02:00
<dependency>
<groupId>me.clip</groupId>
<artifactId>placeholderapi</artifactId>
<version>2.10.6</version>
<scope>provided</scope>
</dependency>
2019-04-25 16:25:57 +02:00
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
2020-07-11 23:31:09 +02:00
<version>1.16.1-R0.1-SNAPSHOT</version>
2019-04-25 16:25:57 +02:00
<scope>provided</scope>
</dependency>
2020-07-12 02:51:51 +02:00
<dependency>
<groupId>de.jeff_media</groupId>
<artifactId>ChestSortAPI</artifactId>
2020-07-12 03:58:40 +02:00
<version>1.0.0</version>
2020-07-12 02:51:51 +02:00
<scope>compile</scope>
</dependency>
2019-05-02 14:42:20 +02:00
<dependency>
<groupId>org.bstats</groupId>
<artifactId>bstats-bukkit</artifactId>
2020-05-19 23:00:44 +02:00
<version>1.7</version>
2019-05-02 14:42:20 +02:00
<scope>compile</scope>
</dependency>
2019-07-15 14:32:38 +02:00
<dependency>
<groupId>com.shampaggon.crackshot</groupId>
<artifactId>CSUtility</artifactId>
2020-05-17 21:20:15 +02:00
<version>0.98.9</version>
2019-07-15 14:32:38 +02:00
<scope>system</scope>
<systemPath>${project.basedir}/lib/CrackShot.jar</systemPath>
2020-05-24 00:34:03 +02:00
</dependency>
2020-05-23 23:27:03 +02:00
<dependency>
<groupId>at.pcgamingfreaks</groupId>
<artifactId>Minepacks-API</artifactId>
2020-05-24 16:34:42 +02:00
<version>2.3.8</version><!-- Check api-version shield for newest version -->
2020-06-23 22:52:08 +02:00
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
</exclusion>
</exclusions>
2020-05-23 23:27:03 +02:00
</dependency>
2020-06-23 20:35:43 +02:00
<dependency>
<groupId>de.jeff_media</groupId>
<artifactId>PluginUpdateChecker</artifactId>
2020-06-25 01:48:11 +02:00
<version>1.3.1</version>
2020-06-23 22:52:08 +02:00
<scope>compile</scope>
2020-06-23 20:35:43 +02:00
</dependency>
<dependency>
<groupId>de.jeff_media</groupId>
<artifactId>InvUnload</artifactId>
2020-06-23 23:15:41 +02:00
<version>4.2.0-SNAPSHOT6</version>
2020-06-23 22:52:08 +02:00
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>de.jeff_media</groupId>
<artifactId>PluginUpdateChecker</artifactId>
</exclusion>
</exclusions>
2020-06-23 20:35:43 +02:00
</dependency>
2019-04-25 16:25:57 +02:00
</dependencies>
2020-06-10 18:21:41 +02:00
<distributionManagement>
<repository>
<id>jeff-ftp</id>
<url>ftps://ftp.jeff-media.de/maven2</url>
</repository>
</distributionManagement>
2019-04-25 16:25:57 +02:00
</project>