EpicEnchants/pom.xml

144 lines
5.7 KiB
XML
Raw Permalink Normal View History

2021-07-10 23:41:20 +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>com.craftaro</groupId>
2019-08-04 23:49:57 +02:00
<artifactId>EpicEnchants</artifactId>
2024-01-13 16:03:40 +01:00
<version>2.0.0</version>
2021-07-10 23:41:20 +02:00
<name>EpicEnchants</name>
<description>Unlock the potential of your weapons, tools and armor by making your own custom enchants.</description>
2023-06-25 12:22:18 +02:00
<url>https://craftaro.com/marketplace/product/67</url>
2021-07-10 23:41:20 +02:00
<properties>
2023-06-25 12:22:18 +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-10 23:41:20 +02:00
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
2023-06-25 12:22:18 +02:00
<issueManagement>
<url>https://discord.gg/craftaro</url>
<system>Discord server</system>
</issueManagement>
2021-07-10 23:41:20 +02:00
2023-06-25 12:22:18 +02:00
<scm>
<url>https://github.com/craftaro/EpicEnchants</url>
<connection>scm:git:git://github.com/craftaro/EpicEnchants.git</connection>
</scm>
2021-07-10 23:41:20 +02:00
2023-06-25 12:22:18 +02:00
<build>
<defaultGoal>clean install</defaultGoal>
2023-06-25 12:22:18 +02:00
<plugins>
2019-08-04 23:49:57 +02:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
2023-06-25 12:22:18 +02:00
<version>3.4.1</version>
2019-08-04 23:49:57 +02:00
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
2023-06-25 12:22:18 +02:00
<finalName>${project.name}-${project.version}</finalName>
2019-08-04 23:49:57 +02:00
<shadedArtifactAttached>false</shadedArtifactAttached>
2023-06-25 12:22:18 +02:00
<useDependencyReducedPomInJar>true</useDependencyReducedPomInJar>
<minimizeJar>true</minimizeJar>
2021-07-10 23:41:20 +02:00
2023-06-25 12:22:18 +02:00
<relocations>
<relocation>
<pattern>com.craftaro.core</pattern>
<shadedPattern>com.craftaro.epicenchants.core</shadedPattern>
2023-06-25 12:22:18 +02:00
</relocation>
</relocations>
2021-07-10 23:41:20 +02:00
2019-08-04 23:49:57 +02:00
<filters>
<filter>
<artifact>*:*</artifact>
2021-07-10 23:41:20 +02:00
2019-08-04 23:49:57 +02:00
<excludes>
2023-06-25 12:22:18 +02:00
<exclude>META-INF/**</exclude>
<exclude>LICENSE</exclude>
<exclude>LICENSE.**</exclude>
2019-08-04 23:49:57 +02:00
</excludes>
</filter>
2023-06-25 12:22:18 +02:00
<filter>
<artifact>com.craftaro:CraftaroCore</artifact>
<excludeDefaults>false</excludeDefaults>
<includes>
<include>**/nms/v*/**</include>
</includes>
2024-01-11 16:09:04 +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>
2023-06-25 12:22:18 +02:00
</filter>
2019-08-04 23:49:57 +02:00
</filters>
</configuration>
</execution>
</executions>
</plugin>
2019-01-16 13:01:24 +01:00
</plugins>
2021-07-10 23:41:20 +02:00
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
2019-01-16 13:01:24 +01:00
</build>
2021-07-10 23:41:20 +02:00
2019-08-04 23:49:57 +02:00
<repositories>
<repository>
<id>craftaro-minecraft-plugins</id>
<url>https://repo.craftaro.com/repository/minecraft-plugins/</url>
</repository>
2020-03-16 20:27:10 +01:00
<repository>
2023-06-29 11:29:23 +02:00
<id>SpigotMC</id>
2023-06-25 12:22:18 +02:00
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
2020-03-16 20:27:10 +01:00
</repository>
2021-07-10 23:41:20 +02:00
2019-08-04 23:49:57 +02:00
<repository>
2023-06-25 12:22:18 +02:00
<id>placeholderapi</id>
<url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
2019-08-04 23:49:57 +02:00
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.craftaro</groupId>
<artifactId>CraftaroCore</artifactId>
<version>3.0.0-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
2019-08-04 23:49:57 +02:00
<dependency>
<groupId>org.spigotmc</groupId>
2021-12-20 18:40:22 +01:00
<artifactId>spigot-api</artifactId>
2023-06-25 12:22:18 +02:00
<version>1.8-R0.1-SNAPSHOT</version>
<scope>provided</scope>
2019-08-04 23:49:57 +02:00
</dependency>
2021-07-10 23:41:20 +02:00
2019-08-04 23:49:57 +02:00
<dependency>
<groupId>me.clip</groupId>
<artifactId>placeholderapi</artifactId>
<version>2.11.3</version>
2019-08-04 23:49:57 +02:00
<scope>provided</scope>
</dependency>
</dependencies>
2020-09-22 05:37:13 +02:00
</project>