2021-07-08 15:35:34 +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>
|
2019-09-12 20:41:26 +02:00
|
|
|
|
2023-06-11 00:22:39 +02:00
|
|
|
<groupId>com.craftaro</groupId>
|
|
|
|
<artifactId>CraftaroCore-Modules</artifactId>
|
2023-06-11 00:23:24 +02:00
|
|
|
<version>3.0.0-SNAPSHOT</version>
|
2019-09-12 20:41:26 +02:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
2021-07-08 16:02:08 +02:00
|
|
|
<!-- Run 'mvn versions:set -DgenerateBackupPoms=false -DnewVersion=X.Y.Z' to update version recursively -->
|
|
|
|
|
2021-06-13 17:24:53 +02:00
|
|
|
<properties>
|
2022-08-07 19:33:38 +02:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2021-06-13 17:24:53 +02:00
|
|
|
<java.version>1.8</java.version>
|
|
|
|
<java.release>8</java.release>
|
|
|
|
|
2021-10-30 16:17:03 +02:00
|
|
|
<sonar.junit.reportPaths>target/surefire-reports/*.xml</sonar.junit.reportPaths>
|
|
|
|
<sonar.coverage.jacoco.xmlReportPaths>target/site/jacoco/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
|
2021-06-13 17:24:53 +02:00
|
|
|
</properties>
|
|
|
|
|
2019-09-12 20:41:26 +02:00
|
|
|
<modules>
|
|
|
|
<module>Core</module>
|
2021-05-27 16:48:21 +02:00
|
|
|
<module>Compatibility</module>
|
2022-08-28 19:13:08 +02:00
|
|
|
|
|
|
|
<module>NMS/NMS</module>
|
2019-09-12 20:41:26 +02:00
|
|
|
<module>NMS/NMS-API</module>
|
2023-06-10 22:51:17 +02:00
|
|
|
<module>NMS/NMS-v1_20_R1</module>
|
2023-06-11 00:25:28 +02:00
|
|
|
<module>NMS/NMS-v1_19_R3</module>
|
|
|
|
<module>NMS/NMS-v1_19_R2</module>
|
|
|
|
<module>NMS/NMS-v1_19_R1</module>
|
|
|
|
<module>NMS/NMS-v1_19_0</module>
|
|
|
|
<module>NMS/NMS-v1_18_R2</module>
|
|
|
|
<module>NMS/NMS-v1_18_R1</module>
|
|
|
|
<module>NMS/NMS-v1_17_R1</module>
|
|
|
|
<module>NMS/NMS-v1_16_R3</module>
|
|
|
|
<module>NMS/NMS-v1_16_R2</module>
|
|
|
|
<module>NMS/NMS-v1_16_R1</module>
|
|
|
|
<module>NMS/NMS-v1_15_R1</module>
|
|
|
|
<module>NMS/NMS-v1_14_R1</module>
|
|
|
|
<module>NMS/NMS-v1_13_R2</module>
|
|
|
|
<module>NMS/NMS-v1_13_R1</module>
|
|
|
|
<module>NMS/NMS-v1_12_R1</module>
|
|
|
|
<module>NMS/NMS-v1_11_R1</module>
|
|
|
|
<module>NMS/NMS-v1_10_R1</module>
|
|
|
|
<module>NMS/NMS-v1_9_R2</module>
|
|
|
|
<module>NMS/NMS-v1_9_R1</module>
|
|
|
|
<module>NMS/NMS-v1_8_R3</module>
|
|
|
|
<module>NMS/NMS-v1_8_R2</module>
|
|
|
|
<module>NMS/NMS-v1_8_R1</module>
|
2019-09-12 20:41:26 +02:00
|
|
|
</modules>
|
|
|
|
|
2021-07-08 15:35:34 +02:00
|
|
|
<issueManagement>
|
2023-06-11 00:22:39 +02:00
|
|
|
<url>https://github.com/craftaro/CraftaroCore/issues</url>
|
2023-05-18 11:24:30 +02:00
|
|
|
<system>GitHub Issues</system>
|
2021-07-08 15:35:34 +02:00
|
|
|
</issueManagement>
|
|
|
|
|
|
|
|
<scm>
|
2023-06-11 00:22:39 +02:00
|
|
|
<url>https://github.com/craftaro/CraftaroCore</url>
|
|
|
|
<connection>scm:git:git://github.com/craftaro/CraftaroCore.git</connection>
|
2021-07-08 15:35:34 +02:00
|
|
|
</scm>
|
|
|
|
|
2019-04-26 00:11:44 +02:00
|
|
|
<build>
|
2019-09-12 20:41:26 +02:00
|
|
|
<finalName>${project.artifactId}-${project.version}</finalName>
|
2021-07-08 15:35:34 +02:00
|
|
|
|
2019-04-26 00:11:44 +02:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2023-06-01 17:37:39 +02:00
|
|
|
<version>3.11.0</version>
|
2021-07-08 15:35:34 +02:00
|
|
|
|
2019-04-26 00:11:44 +02:00
|
|
|
<configuration>
|
2021-06-13 17:24:53 +02:00
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
|
|
|
|
|
|
|
<release>${java.release}</release>
|
2019-04-26 00:11:44 +02:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2021-10-30 14:53:09 +02:00
|
|
|
|
2021-10-30 16:17:03 +02:00
|
|
|
<!-- Plugins required for tests or coverage reports -->
|
2021-10-30 14:53:09 +02:00
|
|
|
<plugin>
|
2022-12-30 18:27:00 +01:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2021-10-30 14:53:09 +02:00
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2023-06-01 17:52:06 +02:00
|
|
|
<version>3.1.0</version>
|
2022-08-07 19:33:38 +02:00
|
|
|
|
|
|
|
<configuration>
|
|
|
|
<environmentVariables>
|
|
|
|
<TESTS_RUN_WITH_MAVEN>true</TESTS_RUN_WITH_MAVEN>
|
|
|
|
</environmentVariables>
|
|
|
|
</configuration>
|
2021-10-30 14:53:09 +02:00
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
2022-12-30 18:27:00 +01:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2021-10-30 14:53:09 +02:00
|
|
|
<artifactId>maven-failsafe-plugin</artifactId>
|
2022-12-30 18:27:00 +01:00
|
|
|
<version>3.0.0-M6</version>
|
2021-10-30 14:53:09 +02:00
|
|
|
</plugin>
|
2021-10-30 16:17:03 +02:00
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.jacoco</groupId>
|
|
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
2022-06-07 19:33:52 +02:00
|
|
|
<version>0.8.8</version>
|
2021-10-30 16:17:03 +02:00
|
|
|
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>default-prepare-agent</id>
|
|
|
|
<goals>
|
|
|
|
<goal>prepare-agent</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
|
|
|
|
<execution>
|
|
|
|
<id>default-report</id>
|
|
|
|
<goals>
|
|
|
|
<goal>report</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2019-04-26 00:11:44 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2021-07-08 15:35:34 +02:00
|
|
|
|
2019-04-26 00:11:44 +02:00
|
|
|
<repositories>
|
2020-03-16 01:30:04 +01:00
|
|
|
<repository>
|
2023-06-30 16:19:16 +02:00
|
|
|
<id>craftaro-minecraft-plugins</id>
|
|
|
|
<url>https://repo.craftaro.com/repository/minecraft-plugins/</url>
|
2020-03-16 01:30:04 +01:00
|
|
|
</repository>
|
2021-07-08 15:35:34 +02:00
|
|
|
|
2019-09-12 20:41:26 +02:00
|
|
|
<repository>
|
2022-11-15 18:57:10 +01:00
|
|
|
<id>SpigotMC</id>
|
2019-09-12 20:41:26 +02:00
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
2021-07-08 15:35:34 +02:00
|
|
|
|
2019-11-13 02:57:35 +01:00
|
|
|
<repository>
|
2021-07-08 17:49:41 +02:00
|
|
|
<id>CodeMC</id>
|
|
|
|
<url>https://repo.codemc.org/repository/maven-public/</url>
|
2019-11-13 02:57:35 +01:00
|
|
|
</repository>
|
2021-07-08 15:35:34 +02:00
|
|
|
|
2021-10-02 22:11:55 +02:00
|
|
|
<repository>
|
2022-11-15 18:57:10 +01:00
|
|
|
<id>bg-software</id>
|
2021-10-02 22:11:55 +02:00
|
|
|
<url>https://repo.bg-software.com/repository/api/</url>
|
|
|
|
</repository>
|
|
|
|
|
2021-01-15 17:45:28 +01:00
|
|
|
<repository>
|
2022-11-15 18:57:10 +01:00
|
|
|
<id>PaperMC</id>
|
|
|
|
<url>https://papermc.io/repo/repository/maven-public/</url>
|
2021-01-15 17:45:28 +01:00
|
|
|
</repository>
|
2022-09-29 21:39:07 +02:00
|
|
|
|
|
|
|
<repository>
|
2022-11-15 18:57:10 +01:00
|
|
|
<id>jitpack.io</id>
|
|
|
|
<url>https://jitpack.io/</url>
|
2022-09-29 21:39:07 +02:00
|
|
|
</repository>
|
2022-11-04 12:28:20 +01:00
|
|
|
|
|
|
|
<repository>
|
|
|
|
<id>enginehub-repo</id>
|
|
|
|
<url>https://maven.enginehub.org/repo/</url>
|
|
|
|
</repository>
|
2023-06-30 16:37:57 +02:00
|
|
|
|
|
|
|
<repository>
|
|
|
|
<id>songoda-public</id>
|
|
|
|
<url>https://repo.craftaro.com/repository/public/</url>
|
|
|
|
</repository>
|
2019-04-26 00:11:44 +02:00
|
|
|
</repositories>
|
2021-07-08 15:35:34 +02:00
|
|
|
|
2019-04-26 00:11:44 +02:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2021-07-08 15:35:34 +02:00
|
|
|
<groupId>org.jetbrains</groupId>
|
|
|
|
<artifactId>annotations</artifactId>
|
2023-07-01 17:38:20 +02:00
|
|
|
<version>24.0.1</version>
|
2021-10-30 14:27:51 +02:00
|
|
|
<scope>provided</scope>
|
2020-06-27 04:11:44 +02:00
|
|
|
</dependency>
|
2021-10-30 14:53:09 +02:00
|
|
|
|
2022-06-26 18:27:20 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-text</artifactId>
|
|
|
|
<version>1.9</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
<version>3.12.0</version>
|
|
|
|
</dependency>
|
|
|
|
|
2021-10-30 14:53:09 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
2023-08-20 09:19:09 +02:00
|
|
|
<version>5.10.0</version>
|
2021-10-30 14:53:09 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2022-11-15 22:47:39 +01:00
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-inline</artifactId>
|
2022-12-30 18:27:00 +01:00
|
|
|
<version>4.11.0</version>
|
2021-10-30 14:53:09 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-04-26 00:11:44 +02:00
|
|
|
</dependencies>
|
|
|
|
</project>
|