ChestSort/pom.xml

106 lines
2.7 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>
<groupId>de.jeffclan</groupId>
<artifactId>JeffChestSort</artifactId>
2020-05-16 21:55:07 +02:00
<version>7.5-pre1</version>
2019-04-25 16:25:57 +02:00
<packaging>jar</packaging>
<name>JeffChestSort</name>
2019-04-29 17:55:10 +02:00
<url>https://www.chestsort.de</url>
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>
<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>
2019-05-02 14:42:20 +02:00
2019-04-25 16:25:57 +02:00
</configuration>
2019-05-02 14:42:20 +02:00
2019-04-25 16:25:57 +02:00
</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>
<relocation>
<pattern>org.bstats</pattern>
<shadedPattern>de.jeffclan.JeffChestSort</shadedPattern>
2019-05-02 14:42:20 +02:00
</relocation>
</relocations>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
2019-04-25 16:25:57 +02:00
</plugins>
</build>
<repositories>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
<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>
2019-04-25 16:25:57 +02:00
</repositories>
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
2020-05-11 12:39:56 +02:00
<version>1.15.2-R0.1-SNAPSHOT</version>
2019-04-25 16:25:57 +02:00
<scope>provided</scope>
</dependency>
2019-05-02 14:42:20 +02:00
<dependency>
<groupId>org.bstats</groupId>
<artifactId>bstats-bukkit</artifactId>
<version>1.4</version>
<scope>compile</scope>
</dependency>
2019-07-15 14:32:38 +02:00
<dependency>
<groupId>com.shampaggon.crackshot</groupId>
<artifactId>CSUtility</artifactId>
2020-05-16 21:55:07 +02:00
<version>latest</version>
2019-07-15 14:32:38 +02:00
<scope>system</scope>
<systemPath>${project.basedir}/lib/CrackShot.jar</systemPath>
</dependency>
2019-05-01 20:17:24 +02:00
2019-04-25 16:25:57 +02:00
</dependencies>
2019-05-02 13:35:58 +02:00
<description>Automatically sorts your chests!</description>
2019-04-25 16:25:57 +02:00
</project>