ShopChest/pom.xml

289 lines
11 KiB
XML
Raw Permalink Normal View History

2016-07-03 18:59:29 +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>de.epiceric</groupId>
<artifactId>ShopChest</artifactId>
2021-12-25 09:33:19 +00:00
<version>1.14.0-SNAPSHOT</version>
2017-07-26 23:17:34 +00:00
2018-07-25 10:52:28 +00:00
<name>ShopChest</name>
<url>https://www.spigotmc.org/resources/shopchest.11431/</url>
2020-03-01 12:35:53 +00:00
<description>A Bukkit plugin letting players create custom chest shops.</description>
<scm>
<connection>scm:git:https://github.com/EpicEricEE/ShopChest.git</connection>
<developerConnection>scm:git:git@github.com:EpicEricEE/ShopChest.git</developerConnection>
<url>https://github.com/EpicEricEE/ShopChest</url>
<tag>HEAD</tag>
2020-03-01 12:35:53 +00:00
</scm>
<ciManagement>
<system>jenkins</system>
<url>http://ci.codemc.io/job/EpicEricEE/job/ShopChest/</url>
</ciManagement>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/EpicEricEE/ShopChest/issues</url>
</issueManagement>
<distributionManagement>
<repository>
<id>codemc-releases</id>
<url>https://repo.codemc.io/repository/maven-releases/</url>
</repository>
<snapshotRepository>
<id>codemc-snapshots</id>
<url>https://repo.codemc.io/repository/maven-snapshots/</url>
</snapshotRepository>
</distributionManagement>
2016-07-03 18:59:29 +00:00
<properties>
2018-07-25 10:52:28 +00:00
<!-- Encoding Properties -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.outputEncoding>UTF-8</project.build.outputEncoding>
2016-07-05 13:08:44 +00:00
2017-07-26 23:17:34 +00:00
<!-- JDK Version -->
2018-07-25 10:52:28 +00:00
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
2016-07-03 18:59:29 +00:00
</properties>
<repositories>
2021-12-23 20:57:39 +00:00
<!-- Spigot repo (Spigot API) -->
2016-07-03 18:59:29 +00:00
<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
2021-12-23 20:57:39 +00:00
<!-- Github repo (Vault, uSkyBlock, GriefPrevention, PlotSquared v4, Towny) -->
2016-07-03 19:14:41 +00:00
<repository>
2021-12-23 20:57:39 +00:00
<id>jitpack-repo</id>
<url>https://jitpack.io</url>
2016-07-03 19:14:41 +00:00
</repository>
2021-12-23 20:57:39 +00:00
<!-- CodeMc repo (AuthMe, ASkyBlock, BentoBox, WorldGuardWrapper) -->
2017-03-17 13:36:24 +00:00
<repository>
2018-07-20 16:02:26 +00:00
<id>codemc-repo</id>
<url>https://repo.codemc.org/repository/maven-public/</url>
2017-03-17 13:36:24 +00:00
</repository>
2021-12-23 20:57:39 +00:00
<!-- Intellectual Site repo (PlotSquared v6) -->
<repository>
2021-12-23 20:57:39 +00:00
<id>intellectualsites-snapshots-repo</id>
<url>https://mvn.intellectualsites.com/content/repositories/public/</url>
</repository>
2021-12-23 20:57:39 +00:00
<!-- Inventive Talent repo (ReflectionHelper) -->
<repository>
<id>inventive-repo</id>
<url>https://repo.inventivetalent.org/content/groups/public/</url>
</repository>
2021-12-25 00:39:12 +00:00
<!-- EngineHub repo (WorldGuard from WorldGuardWrapper) -->
<repository>
<id>enginehub-repo</id>
<url>https://maven.enginehub.org/repo/</url>
</repository>
<!-- AreaShop repo -->
<repository>
<id>areashop-repo</id>
2021-12-25 09:24:55 +00:00
<url>http://maven.wiefferink.me</url>
2021-12-25 00:39:12 +00:00
</repository>
2016-07-03 18:59:29 +00:00
</repositories>
<dependencies>
<dependency>
2020-06-25 17:48:09 +00:00
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.17.1-R0.1-SNAPSHOT</version>
2016-07-03 18:59:29 +00:00
<scope>provided</scope>
</dependency>
<dependency>
2021-12-23 20:57:39 +00:00
<groupId>com.github.MilkBowl</groupId>
2016-07-03 18:59:29 +00:00
<artifactId>VaultAPI</artifactId>
<version>1.7</version>
2016-07-03 18:59:29 +00:00
<scope>provided</scope>
</dependency>
2017-03-17 13:36:24 +00:00
<dependency>
<groupId>fr.xephi</groupId>
<artifactId>authme</artifactId>
<version>5.4.0</version>
2018-07-20 16:02:26 +00:00
<scope>provided</scope>
2017-03-17 13:36:24 +00:00
</dependency>
<dependency>
<groupId>com.plotsquared</groupId>
<artifactId>PlotSquared-Core</artifactId>
2021-12-23 20:57:39 +00:00
<version>6.2.1</version>
<scope>provided</scope>
</dependency>
<dependency>
2021-12-23 20:57:39 +00:00
<groupId>com.github.rlf.uSkyBlock</groupId>
<artifactId>uSkyBlock-API</artifactId>
2021-12-23 20:57:39 +00:00
<version>v2.8.9</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.wasteofplastic</groupId>
<artifactId>askyblock</artifactId>
2021-07-24 21:45:18 +00:00
<version>3.0.9.4</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.github.TechFortress</groupId>
<artifactId>GriefPrevention</artifactId>
<version>16.17.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>me.wiefferink</groupId>
<artifactId>areashop</artifactId>
<version>2.6.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>world.bentobox</groupId>
<artifactId>bentobox</artifactId>
<version>1.17.2</version>
<scope>provided</scope>
</dependency>
<dependency>
2021-12-23 20:57:39 +00:00
<groupId>com.github.IntellectualSites.PlotSquared</groupId>
2021-12-25 00:39:12 +00:00
<artifactId>Core</artifactId>
2021-12-23 20:57:39 +00:00
<version>4.453</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.github.TownyAdvanced</groupId>
<artifactId>Towny</artifactId>
2021-12-23 20:57:39 +00:00
<version>0.97.5.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>pl.gnacik</groupId>
<artifactId>IslandWorld</artifactId>
<version>8.5</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/IslandWorld-8.5.jar</systemPath>
</dependency>
2020-04-27 16:13:10 +00:00
<!-- Only required for build to succeed ? -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
2021-12-23 20:57:39 +00:00
<version>1.18.22</version>
<scope>provided</scope>
</dependency>
<!-- Shaded dependencies -->
2017-05-13 15:20:56 +00:00
<dependency>
<groupId>org.codemc.worldguardwrapper</groupId>
<artifactId>worldguardwrapper</artifactId>
<version>1.2.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.bstats</groupId>
<artifactId>bstats-bukkit</artifactId>
<version>2.2.1</version>
2017-05-13 15:20:56 +00:00
</dependency>
2018-08-01 10:20:10 +00:00
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
<version>5.0.0</version>
2018-08-01 10:20:10 +00:00
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>2.0.0-alpha2</version>
</dependency>
<dependency>
<groupId>org.inventivetalent</groupId>
<artifactId>reflectionhelper</artifactId>
<version>1.18.4-SNAPSHOT</version>
2018-08-01 10:20:10 +00:00
</dependency>
2016-07-03 18:59:29 +00:00
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<targetPath>.</targetPath>
<filtering>true</filtering>
</resource>
</resources>
2018-07-25 10:52:28 +00:00
2016-07-03 18:59:29 +00:00
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.2</version>
2018-07-25 10:52:28 +00:00
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
2018-07-25 10:52:28 +00:00
<createDependencyReducedPom>false</createDependencyReducedPom>
<relocations>
<relocation>
<pattern>org.bstats</pattern>
<shadedPattern>de.epiceric.shopchest.dependencies.bstats</shadedPattern>
</relocation>
<relocation>
<pattern>org.codemc.worldguardwrapper</pattern>
<shadedPattern>de.epiceric.shopchest.dependencies.worldguardwrapper</shadedPattern>
</relocation>
<relocation>
<pattern>com.zaxxer.hikari</pattern>
<shadedPattern>de.epiceric.shopchest.dependencies.hikari</shadedPattern>
</relocation>
<relocation>
<pattern>org.slf4j</pattern>
<shadedPattern>de.epiceric.shopchest.dependencies.slf4j</shadedPattern>
</relocation>
<relocation>
<pattern>org.inventivetalent.reflection</pattern>
<shadedPattern>de.epiceric.shopchest.dependencies.reflectionhelper</shadedPattern>
</relocation>
</relocations>
</configuration>
2018-07-25 10:52:28 +00:00
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<goals>
2020-03-01 12:35:53 +00:00
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
2016-07-05 13:08:44 +00:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
2018-07-25 10:52:28 +00:00
<artifactId>maven-javadoc-plugin</artifactId>
2020-03-16 12:36:15 +00:00
<version>3.2.0</version>
2016-07-05 13:08:44 +00:00
<configuration>
2020-03-01 12:35:53 +00:00
<doclint>none</doclint>
2016-07-05 13:08:44 +00:00
</configuration>
<executions>
<execution>
<goals>
2018-07-25 10:52:28 +00:00
<goal>jar</goal>
2016-07-05 13:08:44 +00:00
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.0.0-M1</version>
<configuration>
<tagNameFormat>v@{project.version}</tagNameFormat>
</configuration>
</plugin>
2016-07-03 18:59:29 +00:00
</plugins>
</build>
2018-05-21 10:16:49 +00:00
</project>