mirror of
https://github.com/amalthea-mc/ShopChest.git
synced 2024-11-08 19:51:05 +00:00
136 lines
4.6 KiB
XML
136 lines
4.6 KiB
XML
<?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">
|
|
<parent>
|
|
<artifactId>ShopChest-parent</artifactId>
|
|
<groupId>de.epiceric</groupId>
|
|
<version>1.14.0-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>ShopChest</artifactId>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.spigotmc</groupId>
|
|
<artifactId>spigot-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.MilkBowl</groupId>
|
|
<artifactId>VaultAPI</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>fr.xephi</groupId>
|
|
<artifactId>authme</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.plotsquared</groupId>
|
|
<artifactId>PlotSquared-Core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.rlf.uSkyBlock</groupId>
|
|
<artifactId>uSkyBlock-API</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.wasteofplastic</groupId>
|
|
<artifactId>askyblock</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.TechFortress</groupId>
|
|
<artifactId>GriefPrevention</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>me.wiefferink</groupId>
|
|
<artifactId>areashop</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>world.bentobox</groupId>
|
|
<artifactId>bentobox</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.IntellectualSites.PlotSquared</groupId>
|
|
<artifactId>Core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.TownyAdvanced</groupId>
|
|
<artifactId>Towny</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>pl.gnacik.islandworld</groupId>
|
|
<artifactId>IslandWorld</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.codemc.worldguardwrapper</groupId>
|
|
<artifactId>worldguardwrapper</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.bstats</groupId>
|
|
<artifactId>bstats-bukkit</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.zaxxer</groupId>
|
|
<artifactId>HikariCP</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-jdk14</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.inventivetalent</groupId>
|
|
<artifactId>reflectionhelper</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.epiceric</groupId>
|
|
<artifactId>shopchest-nms-interface</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.epiceric</groupId>
|
|
<artifactId>shopchest-nms-reflection</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.epiceric</groupId>
|
|
<artifactId>shopchest-nms-v1_17_R1</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.epiceric</groupId>
|
|
<artifactId>shopchest-nms-v1_17_1_R1</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>de.epiceric</groupId>
|
|
<artifactId>shopchest-nms-v1_18_R1</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</resources>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project> |