ShopChest/pom.xml

215 lines
7.5 KiB
XML
Raw Normal View History

2016-07-03 20:59:29 +02: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>de.epiceric</groupId>
<artifactId>ShopChest</artifactId>
2018-07-25 12:52:28 +02:00
<version>1.13-SNAPSHOT</version>
2017-07-27 01:17:34 +02:00
2018-07-25 12:52:28 +02:00
<name>ShopChest</name>
<url>https://www.spigotmc.org/resources/shopchest.11431/</url>
<description>Let your players create their own nice-looking shops to sell their stuff to other players!</description>
2016-07-03 20:59:29 +02:00
<properties>
2018-07-25 12:52:28 +02:00
<!-- Encoding Properties -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.outputEncoding>UTF-8</project.build.outputEncoding>
2016-07-05 15:08:44 +02:00
2017-07-27 01:17:34 +02:00
<!-- JDK Version -->
2018-07-25 12:52:28 +02:00
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
2016-07-03 20:59:29 +02:00
</properties>
<repositories>
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
2016-07-03 21:14:41 +02:00
<repository>
<id>vault-repo</id>
2016-08-03 16:31:33 +02:00
<url>http://nexus.hc.to/content/repositories/pub_releases/</url>
2016-07-03 21:14:41 +02:00
</repository>
2017-03-17 14:36:24 +01:00
<repository>
2018-07-20 18:02:26 +02:00
<id>codemc-repo</id>
<url>https://repo.codemc.org/repository/maven-public/</url>
2017-03-17 14:36:24 +01:00
</repository>
<repository>
<id>sk89q-repo</id>
<url>http://maven.sk89q.com/artifactory/repo/</url>
</repository>
<repository>
<id>athion-repo</id>
<url>http://ci.athion.net/job/PlotSquared-Releases/ws/mvn/</url>
</repository>
<repository>
<id>uskyblock-repo</id>
<url>https://raw.github.com/rlf/uSkyBlock/mvn-repo/</url>
</repository>
<repository>
<id>tastybento-repo</id>
<url>http://dl.bintray.com/tastybento/maven-repo</url>
</repository>
<repository>
<id>jitpack-repo</id>
<url>https://jitpack.io</url>
</repository>
<repository>
<id>nlthijs48-repo</id>
2018-05-21 12:16:49 +02:00
<url>http://maven.wiefferink.me</url>
</repository>
<repository>
<id>articdive-repo</id>
<url>https://nexus.articdive.de/repository/maven-public/</url>
</repository>
2016-07-03 20:59:29 +02:00
</repositories>
<dependencies>
<dependency>
2016-11-17 20:30:26 +01:00
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
2019-05-28 21:15:09 +02:00
<version>1.14.2-R0.1-SNAPSHOT</version>
2016-07-03 20:59:29 +02:00
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.milkbowl.vault</groupId>
<artifactId>VaultAPI</artifactId>
<version>1.7</version>
2016-07-03 20:59:29 +02:00
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.bstats</groupId>
<artifactId>bstats-bukkit</artifactId>
2019-05-28 21:15:09 +02:00
<version>1.5</version>
</dependency>
2017-03-17 14:36:24 +01:00
<dependency>
<groupId>fr.xephi</groupId>
<artifactId>authme</artifactId>
<version>5.4.0</version>
2018-07-20 18:02:26 +02:00
<scope>provided</scope>
2017-03-17 14:36:24 +01:00
</dependency>
<dependency>
<groupId>com.github.intellectualsites.plotsquared</groupId>
<artifactId>PlotSquared-API</artifactId>
<version>4.226</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.github.rlf</groupId>
<artifactId>uSkyBlock-API</artifactId>
<version>2.6.4</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.wasteofplastic</groupId>
<artifactId>askyblock</artifactId>
<version>3.0.6.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.github.TechFortress</groupId>
<artifactId>GriefPrevention</artifactId>
<version>16.6</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.codemc.worldguardwrapper</groupId>
<artifactId>worldguardwrapper</artifactId>
2019-05-28 21:15:09 +02:00
<version>1.1.6-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.palmergames</groupId>
<artifactId>Towny</artifactId>
<version>0.93.1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>pl.gnacik</groupId>
<artifactId>IslandWorld</artifactId>
<version>7.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/IslandWorld-7.0.jar</systemPath>
</dependency>
2017-05-13 17:20:56 +02:00
<dependency>
<groupId>me.wiefferink</groupId>
<artifactId>areashop</artifactId>
<version>2.6.0</version>
<scope>provided</scope>
2017-05-13 17:20:56 +02:00
</dependency>
2018-08-01 12:20:10 +02:00
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
<version>3.2.0</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>1.7.25</version>
</dependency>
2016-07-03 20:59:29 +02:00
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<targetPath>.</targetPath>
<filtering>true</filtering>
</resource>
</resources>
2018-07-25 12:52:28 +02:00
2016-07-03 20:59:29 +02:00
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
2018-07-25 12:52:28 +02:00
<version>3.1.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
2018-07-25 12:52:28 +02:00
<createDependencyReducedPom>false</createDependencyReducedPom>
<relocations>
<relocation>
<pattern>org.bstats</pattern>
<shadedPattern>de.epiceric.shopchest.utils</shadedPattern>
</relocation>
</relocations>
</configuration>
2018-07-25 12:52:28 +02:00
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<goals>
2018-07-25 12:52:28 +02:00
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
2016-07-05 15:08:44 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
2018-07-25 12:52:28 +02:00
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.1</version>
2016-07-05 15:08:44 +02:00
<configuration>
2018-07-25 12:52:28 +02:00
<additionalparam>-Xdoclint:none</additionalparam>
2016-07-05 15:08:44 +02:00
</configuration>
<executions>
<execution>
<goals>
2018-07-25 12:52:28 +02:00
<goal>jar</goal>
2016-07-05 15:08:44 +02:00
</goals>
</execution>
</executions>
</plugin>
2016-07-03 20:59:29 +02:00
</plugins>
</build>
2018-05-21 12:16:49 +02:00
</project>