2023-06-26 16:44:28 +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-06-29 10:07:26 +02:00
|
|
|
<groupId>com.craftaro</groupId>
|
|
|
|
<artifactId>EpicHoppers-Parent</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
2024-11-13 15:28:52 +01:00
|
|
|
<version>5.4.0</version>
|
2023-06-29 10:07:26 +02:00
|
|
|
<!-- Run 'mvn versions:set -DgenerateBackupPoms=false -DnewVersion=X.Y.Z-DEV' to update version recursively -->
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>EpicHoppers-API</module>
|
|
|
|
<module>EpicHoppers-Plugin</module>
|
|
|
|
</modules>
|
2021-12-13 15:09:50 +01:00
|
|
|
|
2023-06-26 16:44:28 +02:00
|
|
|
<name>EpicHoppers</name>
|
|
|
|
<description>Connect hoppers over long distances, filter out unwanted items, auto break blocks, auto sell items and much more.</description>
|
|
|
|
<url>https://craftaro.com/marketplace/product/15</url>
|
2021-12-13 15:09:50 +01:00
|
|
|
|
2023-06-26 16:44:28 +02:00
|
|
|
<properties>
|
2024-11-13 15:28:12 +01:00
|
|
|
<craftaro.coreVersion>3.6.0-SNAPSHOT</craftaro.coreVersion>
|
2023-06-29 10:07:26 +02:00
|
|
|
|
2023-06-26 16:44:28 +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-12-13 15:09:50 +01:00
|
|
|
|
2023-06-26 16:44:28 +02:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2023-06-29 10:07:26 +02:00
|
|
|
|
|
|
|
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
|
|
|
|
<sonar.moduleKey>${project.groupId}:${project.artifactId}</sonar.moduleKey>
|
2023-06-26 16:44:28 +02:00
|
|
|
</properties>
|
2021-12-13 15:09:50 +01:00
|
|
|
|
2023-06-26 16:44:28 +02:00
|
|
|
<issueManagement>
|
|
|
|
<url>https://discord.gg/craftaro</url>
|
|
|
|
<system>Discord server</system>
|
|
|
|
</issueManagement>
|
2021-12-13 15:09:50 +01:00
|
|
|
|
2023-06-26 16:44:28 +02:00
|
|
|
<scm>
|
|
|
|
<url>https://github.com/craftaro/EpicHoppers</url>
|
|
|
|
<connection>scm:git:git://github.com/craftaro/EpicHoppers.git</connection>
|
|
|
|
</scm>
|
2021-12-13 15:09:50 +01:00
|
|
|
|
2018-11-01 05:40:01 +01:00
|
|
|
<repositories>
|
2023-06-26 16:44:28 +02:00
|
|
|
<repository>
|
|
|
|
<id>craftaro-minecraft-plugins</id>
|
|
|
|
<url>https://repo.craftaro.com/repository/minecraft-plugins/</url>
|
|
|
|
</repository>
|
|
|
|
|
2020-03-16 18:11:48 +01:00
|
|
|
<repository>
|
2023-06-29 09:43:54 +02:00
|
|
|
<id>SpigotMC</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
2019-08-25 23:41:43 +02:00
|
|
|
</repository>
|
2018-11-01 05:40:01 +01:00
|
|
|
</repositories>
|
2021-12-13 15:09:50 +01:00
|
|
|
|
2019-05-27 01:33:05 +02:00
|
|
|
<dependencies>
|
2023-06-29 10:07:26 +02:00
|
|
|
<!-- Dev dependencies -->
|
2023-06-26 16:44:28 +02:00
|
|
|
<dependency>
|
2023-06-29 10:07:26 +02:00
|
|
|
<groupId>org.jetbrains</groupId>
|
|
|
|
<artifactId>annotations</artifactId>
|
2024-02-26 13:22:22 +01:00
|
|
|
<version>24.1.0</version>
|
2021-09-30 06:31:15 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2019-05-27 01:33:05 +02:00
|
|
|
</dependencies>
|
2018-11-01 05:40:01 +01:00
|
|
|
</project>
|