EpicFurnaces/pom.xml

141 lines
5.0 KiB
XML
Raw Normal View History

2022-01-21 20:06:11 +01: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>
2019-01-11 16:30:18 +01:00
<groupId>com.songoda</groupId>
<artifactId>EpicFurnaces</artifactId>
2023-06-29 12:17:49 +02:00
<version>4.10.0-SNAPSHOT</version>
2022-01-21 20:06:11 +01:00
<name>EpicFurnaces</name>
<description>EpicFurnaces allows you to upgrade basic Minecraft features to make the game way more entertaining</description>
<url>https://craftaro.com/marketplace/product/22</url>
2022-01-21 20:06:11 +01:00
<properties>
<maven.compiler.release>8</maven.compiler.release>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
2022-01-21 20:06:11 +01:00
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
2022-01-21 20:06:11 +01:00
<issueManagement>
<url>https://discord.gg/craftaro</url>
<system>Discord server</system>
2022-01-21 20:06:11 +01:00
</issueManagement>
<scm>
<url>https://github.com/craftaro/EpicFurnaces</url>
<connection>scm:git:git://github.com/craftaro/EpicFurnaces.git</connection>
2022-01-21 20:06:11 +01:00
</scm>
<build>
2019-01-11 16:30:18 +01:00
<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>
2022-01-21 20:06:11 +01:00
<finalName>${project.name}-${project.version}</finalName>
<shadedArtifactAttached>false</shadedArtifactAttached>
<useDependencyReducedPomInJar>true</useDependencyReducedPomInJar>
2022-01-21 20:06:11 +01:00
<minimizeJar>true</minimizeJar>
2022-01-21 20:06:11 +01:00
<relocations>
<relocation>
<pattern>com.craftaro.core</pattern>
2022-01-21 20:06:11 +01:00
<shadedPattern>com.songoda.epicfurnaces.core</shadedPattern>
</relocation>
</relocations>
<filters>
<filter>
<artifact>*:*</artifact>
2022-01-21 20:06:11 +01:00
<excludes>
2022-01-21 20:06:11 +01:00
<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>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
2019-01-11 16:30:18 +01:00
</plugins>
2022-01-21 20:06:11 +01:00
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
2019-01-11 16:30:18 +01:00
</build>
2019-01-11 16:30:18 +01:00
<repositories>
2020-03-16 18:13:29 +01:00
<repository>
<id>craftaro-minecraft-plugins</id>
<url>https://repo.craftaro.com/repository/minecraft-plugins/</url>
2020-03-16 18:13:29 +01:00
</repository>
2022-01-18 14:34:38 +01:00
<repository>
<id>public</id>
2022-01-21 20:06:11 +01:00
<url>https://repo.songoda.com/repository/public/</url>
2022-01-18 14:34:38 +01:00
</repository>
<repository>
2023-06-29 11:29:32 +02:00
<id>SpigotMC</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
2019-01-11 16:30:18 +01:00
</repositories>
<dependencies>
<dependency>
<groupId>com.craftaro</groupId>
<artifactId>CraftaroCore</artifactId>
<version>3.0.0-SNAPSHOT</version>
2019-09-10 01:27:49 +02:00
<scope>compile</scope>
2019-07-20 16:04:28 +02:00
</dependency>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.19.4-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
2020-07-06 10:27:30 +02:00
<dependency>
<groupId>com.craftaro</groupId>
<artifactId>FabledSkyBlock</artifactId>
<version>3.0.0-b6-SNAPSHOT</version>
<scope>provided</scope>
2020-07-06 10:27:30 +02:00
</dependency>
2023-04-11 18:06:12 +02:00
<dependency>
<groupId>com.craftaro</groupId>
<artifactId>EpicHoppers-API</artifactId>
<version>5.0.0-SNAPSHOT-tmp</version>
2023-04-11 18:06:12 +02:00
<scope>provided</scope>
</dependency>
</dependencies>
2019-01-11 16:30:18 +01:00
</project>