EpicAnchors/pom.xml

60 lines
2.1 KiB
XML
Raw Normal View History

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>
<groupId>com.craftaro</groupId>
<artifactId>EpicAnchors-Parent</artifactId>
<packaging>pom</packaging>
2023-04-22 17:58:54 +02:00
<version>2.2.7</version>
<!-- 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>
<url>https://songoda.com/marketplace/product/31</url>
<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-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>
<url>https://discord.gg/craftaro</url>
<system>Discord server</system>
2021-06-12 15:16:07 +02:00
</issueManagement>
<scm>
<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>
<id>spigot-repo</id>
2021-06-12 15:16:07 +02:00
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
2020-03-16 19:53:30 +01: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>
<version>24.0.1</version>
<scope>provided</scope>
2018-10-18 19:46:43 +02:00
</dependency>
</dependencies>
</project>