2021-07-11 01:55:49 +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>
|
|
|
|
|
2023-07-18 15:34:16 +02:00
|
|
|
<groupId>com.craftaro</groupId>
|
|
|
|
<artifactId>EpicVouchers-Plugin</artifactId>
|
2024-01-13 15:55:48 +01:00
|
|
|
<version>3.0.0</version>
|
2021-07-11 01:55:49 +02:00
|
|
|
|
|
|
|
<name>EpicVouchers</name>
|
2023-07-18 15:23:51 +02:00
|
|
|
<description>Create vouchers that players can claim for rewards with seemingly infinite possibilities</description>
|
|
|
|
<url>https://craftaro.com/marketplace/product/25</url>
|
2021-07-11 01:55:49 +02:00
|
|
|
|
|
|
|
<properties>
|
2023-07-18 15:23:51 +02:00
|
|
|
<maven.compiler.release>8</maven.compiler.release>
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
2021-07-11 01:55:49 +02:00
|
|
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
|
2018-10-18 22:54:07 +02:00
|
|
|
<build>
|
2018-11-26 20:52:43 +01:00
|
|
|
<plugins>
|
2019-04-29 00:01:26 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2024-06-22 15:50:01 +02:00
|
|
|
<version>3.6.0</version>
|
2021-07-11 01:55:49 +02:00
|
|
|
|
2019-04-29 00:01:26 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
2021-07-11 01:55:49 +02:00
|
|
|
|
2019-04-29 00:01:26 +02:00
|
|
|
<configuration>
|
2023-07-18 15:23:51 +02:00
|
|
|
<finalName>${project.name}-${project.version}</finalName>
|
|
|
|
|
2019-04-29 00:01:26 +02:00
|
|
|
<shadedArtifactAttached>false</shadedArtifactAttached>
|
2023-07-18 15:23:51 +02:00
|
|
|
<useDependencyReducedPomInJar>true</useDependencyReducedPomInJar>
|
|
|
|
<minimizeJar>true</minimizeJar>
|
2021-07-11 01:55:49 +02:00
|
|
|
|
2023-07-18 15:23:51 +02:00
|
|
|
<relocations>
|
|
|
|
<relocation>
|
|
|
|
<pattern>com.craftaro.core</pattern>
|
2023-07-18 15:34:16 +02:00
|
|
|
<shadedPattern>com.craftaro.epicvouchers.core</shadedPattern>
|
2023-07-18 15:23:51 +02:00
|
|
|
</relocation>
|
|
|
|
</relocations>
|
2021-07-11 01:55:49 +02:00
|
|
|
|
2019-04-29 00:01:26 +02:00
|
|
|
<filters>
|
|
|
|
<filter>
|
|
|
|
<artifact>*:*</artifact>
|
2023-07-18 15:23:51 +02:00
|
|
|
|
2019-04-29 00:01:26 +02:00
|
|
|
<excludes>
|
2023-07-18 15:23:51 +02:00
|
|
|
<exclude>META-INF/**</exclude>
|
|
|
|
<exclude>LICENSE</exclude>
|
|
|
|
<exclude>LICENSE.**</exclude>
|
2019-04-29 00:01:26 +02:00
|
|
|
</excludes>
|
|
|
|
</filter>
|
2024-01-11 16:13:13 +01:00
|
|
|
|
|
|
|
<filter>
|
|
|
|
<artifact>com.craftaro:CraftaroCore</artifact>
|
|
|
|
<excludeDefaults>false</excludeDefaults>
|
2024-04-14 23:27:16 +02:00
|
|
|
<includes>
|
|
|
|
<include>**/nms/v*/**</include>
|
|
|
|
</includes>
|
2024-01-11 16:13:13 +01:00
|
|
|
<excludes>
|
|
|
|
<exclude>**/third_party/org/apache/**</exclude>
|
|
|
|
<exclude>**/third_party/net/kyori/**</exclude>
|
|
|
|
<exclude>**/third_party/com/zaxxer/**</exclude>
|
|
|
|
<exclude>**/third_party/org/jooq/**</exclude>
|
|
|
|
<exclude>**/third_party/org/mariadb/**</exclude>
|
|
|
|
<exclude>**/third_party/com/h2database/**</exclude>
|
|
|
|
<exclude>**/third_party/org/h2/**</exclude>
|
|
|
|
<exclude>**/third_party/com/cryptomorin/**</exclude>
|
|
|
|
<exclude>**/third_party/org/reactivestreams/**</exclude>
|
|
|
|
</excludes>
|
|
|
|
</filter>
|
2019-04-29 00:01:26 +02:00
|
|
|
</filters>
|
2019-03-19 11:59:54 +01:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2018-10-18 22:54:07 +02:00
|
|
|
</plugins>
|
2021-07-11 01:55:49 +02:00
|
|
|
|
2018-10-18 22:54:07 +02:00
|
|
|
<resources>
|
|
|
|
<resource>
|
2018-11-26 20:37:49 +01:00
|
|
|
<directory>src/main/resources</directory>
|
2018-10-18 22:54:07 +02:00
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</build>
|
2021-07-11 01:55:49 +02:00
|
|
|
|
2018-10-18 22:54:07 +02:00
|
|
|
<repositories>
|
2020-03-16 19:52:47 +01:00
|
|
|
<repository>
|
2023-07-18 15:14:31 +02:00
|
|
|
<id>craftaro-minecraft-plugins</id>
|
|
|
|
<url>https://repo.craftaro.com/repository/minecraft-plugins/</url>
|
|
|
|
</repository>
|
|
|
|
|
|
|
|
<repository>
|
|
|
|
<id>SpigotMC</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
2020-03-16 19:52:47 +01:00
|
|
|
</repository>
|
2018-10-18 22:54:07 +02:00
|
|
|
</repositories>
|
2021-07-11 01:55:49 +02:00
|
|
|
|
2018-10-18 22:54:07 +02:00
|
|
|
<dependencies>
|
2023-07-18 15:14:31 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.craftaro</groupId>
|
|
|
|
<artifactId>CraftaroCore</artifactId>
|
2024-06-22 15:52:30 +02:00
|
|
|
<version>3.1.0-SNAPSHOT</version>
|
2023-07-18 15:14:31 +02:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2018-10-18 22:54:07 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
2021-12-02 19:53:18 +01:00
|
|
|
<artifactId>spigot-api</artifactId>
|
|
|
|
<version>1.18-R0.1-SNAPSHOT</version>
|
2019-01-02 20:21:21 +01:00
|
|
|
<scope>provided</scope>
|
2018-10-18 22:54:07 +02:00
|
|
|
</dependency>
|
2021-07-11 01:55:49 +02:00
|
|
|
|
2018-10-18 22:54:07 +02:00
|
|
|
<dependency>
|
2019-01-02 20:21:21 +01:00
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
2021-07-11 01:55:49 +02:00
|
|
|
<version>1.18.20</version>
|
2019-04-05 15:58:46 +02:00
|
|
|
<scope>provided</scope>
|
2018-10-18 22:54:07 +02:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|