2021-07-19 13:59:24 +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-26 18:05:13 +02:00
<groupId > com.craftaro</groupId>
2019-09-11 16:41:08 +02:00
<artifactId > EpicFarming</artifactId>
2024-04-06 13:04:45 +02:00
<version > 4.2.1</version>
2021-07-19 13:59:24 +02:00
2023-06-25 14:19:34 +02:00
<name > EpicFarming</name>
<description > Allow your players to grow crops faster, automatically replant, harvest and store crops and animal produce in the farm's inventory, as well as much more</description>
<url > https://craftaro.com/marketplace/product/21</url>
2021-07-19 13:59:24 +02:00
2023-06-25 14:19:34 +02: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>
2021-07-19 13:59:24 +02:00
2023-06-25 14:19:34 +02:00
<project.build.sourceEncoding > UTF-8</project.build.sourceEncoding>
</properties>
2021-07-19 13:59:24 +02:00
2023-06-25 14:19:34 +02:00
<issueManagement >
<url > https://discord.gg/craftaro</url>
<system > Discord server</system>
</issueManagement>
2021-07-19 13:59:24 +02:00
2023-06-25 14:19:34 +02:00
<scm >
<url > https://github.com/craftaro/EpicFarming</url>
<connection > scm:git:git://github.com/craftaro/EpicFarming.git</connection>
</scm>
2021-07-19 13:59:24 +02:00
2023-06-25 14:19:34 +02:00
<build >
<plugins >
2019-09-11 16:37:45 +02:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-shade-plugin</artifactId>
2024-02-26 12:45:46 +01:00
<version > 3.5.2</version>
2021-07-19 13:59:24 +02:00
2019-09-11 16:37:45 +02:00
<executions >
<execution >
<phase > package</phase>
<goals >
<goal > shade</goal>
</goals>
2021-07-19 13:59:24 +02:00
2019-09-11 16:37:45 +02:00
<configuration >
2023-06-25 14:19:34 +02:00
<finalName > ${project.name}-${project.version}</finalName>
2019-09-11 16:37:45 +02:00
<shadedArtifactAttached > false</shadedArtifactAttached>
2023-06-25 14:19:34 +02:00
<useDependencyReducedPomInJar > true</useDependencyReducedPomInJar>
2019-09-15 18:11:58 +02:00
<minimizeJar > true</minimizeJar>
2021-07-19 13:59:24 +02:00
2023-06-25 14:19:34 +02:00
<relocations >
<relocation >
<pattern > com.craftaro.core</pattern>
2023-07-26 18:01:37 +02:00
<shadedPattern > com.craftaro.epicfarming.core</shadedPattern>
2023-06-25 14:19:34 +02:00
</relocation>
</relocations>
2021-07-19 13:59:24 +02:00
2019-09-11 16:37:45 +02:00
<filters >
<filter >
<artifact > *:*</artifact>
2023-06-25 14:19:34 +02:00
2019-09-11 16:37:45 +02:00
<excludes >
2023-06-25 14:19:34 +02:00
<exclude > META-INF/**</exclude>
<exclude > LICENSE</exclude>
<exclude > LICENSE.**</exclude>
2019-09-11 16:37:45 +02:00
</excludes>
</filter>
2023-06-25 16:22:33 +02:00
<filter >
<artifact > com.craftaro:CraftaroCore</artifact>
<excludeDefaults > false</excludeDefaults>
<includes >
<include > **/nms/v*/**</include>
</includes>
2024-01-11 16:04:14 +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 16:22:33 +02:00
</filter>
2023-06-25 14:19:34 +02:00
</filters>
2019-09-11 16:37:45 +02:00
</configuration>
</execution>
</executions>
</plugin>
2018-05-06 18:56:17 +02:00
</plugins>
2021-07-19 13:59:24 +02:00
2023-06-25 14:19:34 +02:00
<resources >
<resource >
<directory > src/main/resources</directory>
<filtering > true</filtering>
</resource>
</resources>
</build>
2021-07-19 13:59:24 +02:00
2018-05-06 18:56:17 +02:00
<repositories >
2023-06-25 14:19:34 +02:00
<repository >
<id > craftaro-minecraft-plugins</id>
<url > https://repo.craftaro.com/repository/minecraft-plugins/</url>
</repository>
2020-03-16 18:33:50 +01:00
<repository >
2023-07-26 18:04:44 +02:00
<id > public</id>
<url > https://repo.songoda.com/repository/public/</url>
2020-03-16 18:33:50 +01:00
</repository>
2023-06-25 14:19:34 +02:00
<repository >
2023-06-29 11:29:08 +02:00
<id > SpigotMC</id>
2023-06-25 14:19:34 +02:00
<url > https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
2018-05-06 18:56:17 +02:00
</repositories>
2021-07-19 13:59:24 +02:00
2019-09-11 16:37:45 +02:00
<dependencies >
<dependency >
2023-06-25 16:21:10 +02:00
<groupId > com.craftaro</groupId>
<artifactId > CraftaroCore</artifactId>
2024-03-28 15:06:27 +01:00
<version > 3.0.4-SNAPSHOT</version>
2019-09-11 16:37:45 +02:00
<scope > compile</scope>
</dependency>
2021-07-19 13:59:24 +02:00
2020-05-29 18:08:18 +02:00
<dependency >
2023-09-04 21:50:37 +02:00
<groupId > com.craftaro</groupId>
<artifactId > FabledSkyBlock</artifactId>
2024-03-26 19:22:53 +01:00
<version > 3.0.4</version>
2022-07-03 22:24:32 +02:00
<scope > provided</scope>
2020-05-29 18:08:18 +02:00
</dependency>
2023-06-25 14:19:34 +02:00
2024-04-06 13:04:45 +02:00
<dependency >
<groupId > com.craftaro</groupId>
<artifactId > UltimateStacker-API</artifactId>
<version > 1.0.0-SNAPSHOT</version>
<scope > provided</scope>
</dependency>
2023-06-25 16:21:10 +02:00
<!-- TODO: Check if spigot - api can be downgraded to 1.8 -->
2023-06-25 14:19:34 +02:00
<dependency >
<groupId > org.spigotmc</groupId>
<artifactId > spigot-api</artifactId>
<version > 1.18-R0.1-SNAPSHOT</version>
<scope > provided</scope>
</dependency>
2019-09-11 16:37:45 +02:00
</dependencies>
2018-10-18 20:52:09 +02:00
</project>