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>
|
|
|
|
|
2018-10-18 19:46:43 +02:00
|
|
|
<groupId>com.songoda</groupId>
|
|
|
|
<artifactId>EpicAnchors</artifactId>
|
2021-06-12 15:16:07 +02:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
<version>2.0.0-ALPHA</version>
|
|
|
|
<!-- Run 'mvn versions:set -DgenerateBackupPoms=false -DnewVersion=X.Y.Z-DEV' to update version recursively -->
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>modules/epicanchors-api</module>
|
|
|
|
<module>modules/epicanchors-plugin</module>
|
|
|
|
|
|
|
|
<module>modules/nms/epicanchors-v1_16_R3</module>
|
|
|
|
<module>modules/nms/epicanchors-v1_16_R2</module>
|
|
|
|
<module>modules/nms/epicanchors-v1_16_R1</module>
|
|
|
|
<module>modules/nms/epicanchors-v1_15_R1</module>
|
|
|
|
<module>modules/nms/epicanchors-v1_14_R1</module>
|
|
|
|
<module>modules/nms/epicanchors-v1_13_R2</module>
|
|
|
|
<module>modules/nms/epicanchors-v1_13_R1</module>
|
|
|
|
<module>modules/nms/epicanchors-v1_12_R1</module>
|
|
|
|
<module>modules/nms/epicanchors-v1_11_R1</module>
|
|
|
|
<module>modules/nms/epicanchors-v1_10_R1</module>
|
|
|
|
<module>modules/nms/epicanchors-v1_9_R2</module>
|
|
|
|
<module>modules/nms/epicanchors-v1_9_R1</module>
|
|
|
|
<module>modules/nms/epicanchors-v1_8_R3</module>
|
|
|
|
<module>modules/nms/epicanchors-v1_8_R2</module>
|
|
|
|
<module>modules/nms/epicanchors-v1_8_R1</module>
|
|
|
|
</modules>
|
|
|
|
|
|
|
|
<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>
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
<java.release>8</java.release>
|
|
|
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2021-05-30 06:42:21 +02:00
|
|
|
|
|
|
|
<sonar.projectKey>songoda_EpicAnchors</sonar.projectKey>
|
|
|
|
<sonar.organization>songoda</sonar.organization>
|
|
|
|
<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://support.songoda.com/servicedesk/customer/portal/3</url>
|
|
|
|
<system>Jira Service Desk</system>
|
|
|
|
</issueManagement>
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
<url>https://github.com/songoda/EpicAnchors</url>
|
|
|
|
<connection>scm:git:git:github.com/songoda/EpicAnchors.git</connection>
|
|
|
|
</scm>
|
|
|
|
|
2018-10-18 19:46:43 +02:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2021-06-12 15:16:07 +02:00
|
|
|
<version>3.8.1</version>
|
|
|
|
|
2018-10-18 19:46:43 +02:00
|
|
|
<configuration>
|
2021-06-12 15:16:07 +02:00
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
|
|
|
|
|
|
|
<release>${java.release}</release>
|
2018-10-18 19:46:43 +02:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2021-06-12 15:16:07 +02:00
|
|
|
|
2018-10-18 19:46:43 +02:00
|
|
|
<repositories>
|
2020-03-16 19:53:30 +01:00
|
|
|
<repository>
|
2021-06-12 15:16:07 +02:00
|
|
|
<id>spigotmc-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
2020-03-16 19:53:30 +01:00
|
|
|
</repository>
|
2021-06-12 15:16:07 +02:00
|
|
|
|
2019-07-22 05:05:46 +02:00
|
|
|
<repository>
|
2021-06-12 15:16:07 +02:00
|
|
|
<id>songoda-public</id>
|
|
|
|
<url>https://repo.songoda.com/repository/public/</url>
|
2019-07-22 05:05:46 +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>
|
|
|
|
<version>21.0.0</version>
|
2019-09-08 23:12:28 +02:00
|
|
|
<scope>compile</scope>
|
2018-10-18 19:46:43 +02:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|