mirror of
https://github.com/songoda/EpicEnchants.git
synced 2024-11-14 22:56:20 +01:00
144 lines
5.7 KiB
XML
144 lines
5.7 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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.craftaro</groupId>
|
|
<artifactId>EpicEnchants</artifactId>
|
|
<version>2.0.0-b3-SNAPSHOT</version>
|
|
|
|
<name>EpicEnchants</name>
|
|
<description>Unlock the potential of your weapons, tools and armor by making your own custom enchants.</description>
|
|
<url>https://craftaro.com/marketplace/product/67</url>
|
|
|
|
<properties>
|
|
<maven.compiler.release>8</maven.compiler.release>
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<issueManagement>
|
|
<url>https://discord.gg/craftaro</url>
|
|
<system>Discord server</system>
|
|
</issueManagement>
|
|
|
|
<scm>
|
|
<url>https://github.com/craftaro/EpicEnchants</url>
|
|
<connection>scm:git:git://github.com/craftaro/EpicEnchants.git</connection>
|
|
</scm>
|
|
|
|
<build>
|
|
<defaultGoal>clean install</defaultGoal>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>3.4.1</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
<configuration>
|
|
<finalName>${project.name}-${project.version}</finalName>
|
|
|
|
<shadedArtifactAttached>false</shadedArtifactAttached>
|
|
<useDependencyReducedPomInJar>true</useDependencyReducedPomInJar>
|
|
<minimizeJar>true</minimizeJar>
|
|
|
|
<relocations>
|
|
<relocation>
|
|
<pattern>com.craftaro.core</pattern>
|
|
<shadedPattern>com.craftaro.epicenchants.core</shadedPattern>
|
|
</relocation>
|
|
</relocations>
|
|
|
|
<filters>
|
|
<filter>
|
|
<artifact>*:*</artifact>
|
|
|
|
<excludes>
|
|
<exclude>META-INF/**</exclude>
|
|
<exclude>LICENSE</exclude>
|
|
<exclude>LICENSE.**</exclude>
|
|
</excludes>
|
|
</filter>
|
|
|
|
<filter>
|
|
<artifact>com.craftaro:CraftaroCore</artifact>
|
|
<excludeDefaults>false</excludeDefaults>
|
|
<includes>
|
|
<include>**/nms/v*/**</include>
|
|
</includes>
|
|
<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>
|
|
</filters>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<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>
|
|
</repository>
|
|
|
|
<repository>
|
|
<id>placeholderapi</id>
|
|
<url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.craftaro</groupId>
|
|
<artifactId>CraftaroCore</artifactId>
|
|
<version>3.0.0-SNAPSHOT</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.spigotmc</groupId>
|
|
<artifactId>spigot-api</artifactId>
|
|
<version>1.8-R0.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>me.clip</groupId>
|
|
<artifactId>placeholderapi</artifactId>
|
|
<version>2.11.3</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|