mirror of
https://github.com/craftaro/EpicSpawners.git
synced 2025-01-05 10:16:49 +08:00
74 lines
2.4 KiB
XML
74 lines
2.4 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>EpicSpawners-Parent</artifactId>
|
|
<packaging>pom</packaging>
|
|
<version>8.5.0</version>
|
|
|
|
<modules>
|
|
<module>EpicSpawners-API</module>
|
|
<module>EpicSpawners-Plugin</module>
|
|
</modules>
|
|
|
|
<name>EpicSpawners</name>
|
|
<description>Bring together item spawners, custom drops, spawning combining, silk-touch spawners and a spawner shop all in a simple and easy to use and configure plugin</description>
|
|
<url>https://craftaro.com/marketplace/product/13</url>
|
|
|
|
<properties>
|
|
<craftaro.coreVersion>3.5.0-SNAPSHOT</craftaro.coreVersion>
|
|
|
|
<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/EpicSpawners</url>
|
|
<connection>scm:git:git://github.com/craftaro/EpicSpawners.git</connection>
|
|
</scm>
|
|
|
|
<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>playpro-repo</id>
|
|
<url>https://maven.playpro.com</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.jetbrains</groupId>
|
|
<artifactId>annotations</artifactId>
|
|
<version>24.1.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>net.coreprotect</groupId>
|
|
<artifactId>coreprotect</artifactId>
|
|
<version>22.3</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|