2021-06-12 15:16:07 +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-21 15:05:48 +02:00
|
|
|
<groupId>com.craftaro</groupId>
|
|
|
|
<artifactId>EpicAnchors-Parent</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
2023-06-24 11:00:53 +02:00
|
|
|
<version>3.0.0-SNAPSHOT</version>
|
2023-06-21 15:05:48 +02:00
|
|
|
<!-- Run 'mvn versions:set -DgenerateBackupPoms=false -DnewVersion=X.Y.Z-DEV' to update version recursively -->
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>EpicAnchors-API</module>
|
|
|
|
<module>EpicAnchors-Plugin</module>
|
|
|
|
</modules>
|
2021-06-12 15:16:07 +02:00
|
|
|
|
|
|
|
<name>EpicAnchors</name>
|
|
|
|
<description>Allow your players to keep chunks loaded for a limited amount of time for a cost.</description>
|
2023-06-24 11:46:54 +02:00
|
|
|
<url>https://craftaro.com/marketplace/product/31</url>
|
2021-06-12 15:16:07 +02:00
|
|
|
|
|
|
|
<properties>
|
2023-06-24 10:57:14 +02:00
|
|
|
<craftaro.coreVersion>3.0.0-SNAPSHOT</craftaro.coreVersion>
|
|
|
|
|
2023-06-21 15:05:48 +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-06-12 15:16:07 +02:00
|
|
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2021-05-30 06:42:21 +02:00
|
|
|
|
|
|
|
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
|
|
|
|
<sonar.moduleKey>${project.groupId}:${project.artifactId}</sonar.moduleKey>
|
2021-06-12 15:16:07 +02:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<issueManagement>
|
2023-05-18 11:30:04 +02:00
|
|
|
<url>https://discord.gg/craftaro</url>
|
|
|
|
<system>Discord server</system>
|
2021-06-12 15:16:07 +02:00
|
|
|
</issueManagement>
|
|
|
|
|
|
|
|
<scm>
|
2023-05-18 11:30:04 +02:00
|
|
|
<url>https://github.com/craftaro/EpicAnchors</url>
|
|
|
|
<connection>scm:git:git://github.com/craftaro/EpicAnchors.git</connection>
|
2021-06-12 15:16:07 +02:00
|
|
|
</scm>
|
|
|
|
|
2018-10-18 19:46:43 +02:00
|
|
|
<repositories>
|
2020-03-16 19:53:30 +01:00
|
|
|
<repository>
|
2023-06-29 11:28:45 +02:00
|
|
|
<id>craftaro-minecraft-plugins</id>
|
|
|
|
<url>https://repo.craftaro.com/repository/minecraft-plugins/</url>
|
2020-03-16 19:53:30 +01:00
|
|
|
</repository>
|
2023-06-24 10:57:14 +02:00
|
|
|
|
|
|
|
<repository>
|
2023-06-29 11:28:45 +02:00
|
|
|
<id>SpigotMC</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
2023-06-24 10:57:14 +02:00
|
|
|
</repository>
|
2018-10-18 19:46:43 +02:00
|
|
|
</repositories>
|
2021-06-12 15:16:07 +02:00
|
|
|
|
2018-10-18 19:46:43 +02:00
|
|
|
<dependencies>
|
2021-06-12 15:16:07 +02:00
|
|
|
<!-- Dev dependencies -->
|
2018-10-18 19:46:43 +02:00
|
|
|
<dependency>
|
2021-06-12 15:16:07 +02:00
|
|
|
<groupId>org.jetbrains</groupId>
|
|
|
|
<artifactId>annotations</artifactId>
|
2023-04-01 14:59:48 +02:00
|
|
|
<version>24.0.1</version>
|
2023-06-14 21:41:09 +02:00
|
|
|
<scope>provided</scope>
|
2018-10-18 19:46:43 +02:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|