2022-01-21 20:06:11 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-10-26 23:14:59 +02:00
|
|
|
<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>
|
2019-06-13 12:40:38 +02:00
|
|
|
<artifactId>EpicFurnaces</artifactId>
|
2023-04-13 20:01:10 +02:00
|
|
|
<version>4.9.7</version>
|
2021-10-26 23:14:59 +02:00
|
|
|
|
2022-01-21 20:06:11 +01:00
|
|
|
<name>EpicFurnaces</name>
|
2023-06-26 16:35:39 +02:00
|
|
|
<description></description>
|
|
|
|
<url>https://craftaro.com/marketplace/product/22</url>
|
2022-01-21 20:06:11 +01:00
|
|
|
|
|
|
|
<properties>
|
2023-06-26 16:35:39 +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>
|
2022-01-21 20:06:11 +01:00
|
|
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
2021-10-26 23:14:59 +02:00
|
|
|
|
2022-01-21 20:06:11 +01:00
|
|
|
<issueManagement>
|
2023-06-26 16:35:39 +02:00
|
|
|
<url>https://discord.gg/craftaro</url>
|
|
|
|
<system>Discord server</system>
|
2022-01-21 20:06:11 +01:00
|
|
|
</issueManagement>
|
|
|
|
|
|
|
|
<scm>
|
2023-06-26 16:35:39 +02:00
|
|
|
<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>
|
2019-06-13 12:40:38 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2023-06-26 16:35:39 +02:00
|
|
|
<version>3.4.1</version>
|
2021-10-26 23:14:59 +02:00
|
|
|
|
2019-06-13 12:40:38 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
2021-10-26 23:14:59 +02:00
|
|
|
|
2019-06-13 12:40:38 +02:00
|
|
|
<configuration>
|
2022-01-21 20:06:11 +01:00
|
|
|
<finalName>${project.name}-${project.version}</finalName>
|
|
|
|
|
2023-06-26 16:35:39 +02:00
|
|
|
<shadedArtifactAttached>false</shadedArtifactAttached>
|
|
|
|
<useDependencyReducedPomInJar>true</useDependencyReducedPomInJar>
|
2022-01-21 20:06:11 +01:00
|
|
|
<minimizeJar>true</minimizeJar>
|
2021-10-26 23:14:59 +02:00
|
|
|
|
2022-01-21 20:06:11 +01:00
|
|
|
<relocations>
|
|
|
|
<relocation>
|
2023-06-26 16:35:39 +02:00
|
|
|
<pattern>com.craftaro.core</pattern>
|
2022-01-21 20:06:11 +01:00
|
|
|
<shadedPattern>com.songoda.epicfurnaces.core</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
</relocations>
|
2021-10-26 23:14:59 +02:00
|
|
|
|
2019-06-13 12:40:38 +02:00
|
|
|
<filters>
|
|
|
|
<filter>
|
|
|
|
<artifact>*:*</artifact>
|
2022-01-21 20:06:11 +01:00
|
|
|
|
2019-06-13 12:40:38 +02:00
|
|
|
<excludes>
|
2022-01-21 20:06:11 +01:00
|
|
|
<exclude>META-INF/**</exclude>
|
|
|
|
<exclude>LICENSE</exclude>
|
|
|
|
<exclude>LICENSE.**</exclude>
|
2019-06-13 12:40:38 +02:00
|
|
|
</excludes>
|
|
|
|
</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>
|
2021-10-26 23:14:59 +02:00
|
|
|
|
2019-01-11 16:30:18 +01:00
|
|
|
<repositories>
|
2020-03-16 18:13:29 +01:00
|
|
|
<repository>
|
2023-06-26 16:35:39 +02:00
|
|
|
<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>
|
2023-06-26 16:35:39 +02:00
|
|
|
<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>
|
2023-06-26 16:35:39 +02:00
|
|
|
|
|
|
|
<repository>
|
2023-06-29 11:29:32 +02:00
|
|
|
<id>SpigotMC</id>
|
2023-06-26 16:35:39 +02:00
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
2019-01-11 16:30:18 +01:00
|
|
|
</repositories>
|
2021-10-26 23:14:59 +02:00
|
|
|
|
2019-06-13 12:40:38 +02:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.songoda</groupId>
|
2019-09-10 01:27:49 +02:00
|
|
|
<artifactId>SongodaCore</artifactId>
|
2023-04-13 20:00:36 +02:00
|
|
|
<version>2.6.19</version>
|
2019-09-10 01:27:49 +02:00
|
|
|
<scope>compile</scope>
|
2019-07-20 16:04:28 +02:00
|
|
|
</dependency>
|
2021-10-26 23:14:59 +02:00
|
|
|
|
2023-06-26 16:35:39 +02:00
|
|
|
<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.songoda</groupId>
|
|
|
|
<artifactId>skyblock</artifactId>
|
2021-10-27 20:06:59 +02:00
|
|
|
<version>2.3.30</version>
|
2021-10-26 23:14:59 +02:00
|
|
|
<scope>provided</scope>
|
2020-07-06 10:27:30 +02:00
|
|
|
</dependency>
|
2023-04-11 18:06:12 +02:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.songoda</groupId>
|
|
|
|
<artifactId>EpicHoppers</artifactId>
|
|
|
|
<version>4.7.8</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2019-06-13 12:40:38 +02:00
|
|
|
</dependencies>
|
2019-01-11 16:30:18 +01:00
|
|
|
</project>
|