2022-07-22 17:10: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">
|
2021-03-21 12:53:43 +01:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<groupId>fr.pandacube.lib</groupId>
|
|
|
|
|
|
|
|
<artifactId>pandalib-parent</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<packaging>pom</packaging>
|
2022-07-22 16:30:27 +02:00
|
|
|
|
|
|
|
<description>Open Source Software for the Minecraft server Pandacube.fr</description>
|
2021-03-21 12:53:43 +01:00
|
|
|
|
|
|
|
<organization>
|
|
|
|
<name>Pandacube</name>
|
|
|
|
<url>https://www.pandacube.fr/</url>
|
|
|
|
</organization>
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>marcbal</id>
|
|
|
|
<name>Marc Baloup</name>
|
|
|
|
<url>https://github.com/marcbal/</url>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
<inceptionYear>2015</inceptionYear>
|
|
|
|
|
|
|
|
<ciManagement>
|
|
|
|
<system>jenkins</system>
|
|
|
|
<url>https://ci.pandacube.fr/</url>
|
|
|
|
</ciManagement>
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
<url>https://git.pandacube.fr/PandacubeFr/</url>
|
|
|
|
</scm>
|
|
|
|
|
2022-07-22 16:30:27 +02:00
|
|
|
<issueManagement>
|
|
|
|
<system>github</system>
|
|
|
|
<url>https://github.com/PandacubeFr/Pandalib/issues</url>
|
|
|
|
</issueManagement>
|
|
|
|
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>MIT License</name>
|
|
|
|
<url>https://api.github.com/licenses/mit</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
2021-03-21 12:53:43 +01:00
|
|
|
<properties>
|
|
|
|
<build.number>unknown</build.number>
|
2021-11-30 20:09:47 +01:00
|
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
|
|
<maven.compiler.target>17</maven.compiler.target>
|
2021-03-21 12:53:43 +01:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2021-03-21 20:17:31 +01:00
|
|
|
|
2022-06-08 14:37:58 +02:00
|
|
|
<bungeecord.version>1.19-R0.1-SNAPSHOT</bungeecord.version>
|
2022-06-23 00:21:42 +02:00
|
|
|
<paper.version>1.19-R0.1</paper.version>
|
|
|
|
<mc.version>1.19</mc.version>
|
2021-03-21 12:53:43 +01:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<modules>
|
2022-07-20 13:28:01 +02:00
|
|
|
<module>pandalib-bungee</module>
|
2022-07-22 02:16:45 +02:00
|
|
|
<module>pandalib-bungee-permissions</module>
|
|
|
|
<module>pandalib-bungee-players</module>
|
2022-07-20 13:28:01 +02:00
|
|
|
<module>pandalib-chat</module>
|
|
|
|
<module>pandalib-cli</module>
|
2022-08-03 01:45:18 +02:00
|
|
|
<module>pandalib-commands</module>
|
2022-07-20 13:28:01 +02:00
|
|
|
<module>pandalib-core</module>
|
|
|
|
<module>pandalib-db</module>
|
|
|
|
<module>pandalib-net</module>
|
|
|
|
<module>pandalib-netapi</module>
|
|
|
|
<module>pandalib-paper</module>
|
2022-07-22 02:16:45 +02:00
|
|
|
<module>pandalib-paper-permissions</module>
|
|
|
|
<module>pandalib-paper-players</module>
|
2022-07-21 02:19:28 +02:00
|
|
|
<module>pandalib-paper-reflect</module>
|
2022-07-20 13:28:01 +02:00
|
|
|
<module>pandalib-permissions</module>
|
2022-07-22 02:16:45 +02:00
|
|
|
<module>pandalib-players-permissible</module>
|
2022-07-21 02:19:28 +02:00
|
|
|
<module>pandalib-players-standalone</module>
|
2022-07-20 13:28:01 +02:00
|
|
|
<module>pandalib-reflect</module>
|
|
|
|
<module>pandalib-util</module>
|
2021-03-21 12:53:43 +01:00
|
|
|
</modules>
|
|
|
|
|
|
|
|
<dependencies>
|
2022-06-15 17:05:28 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
2022-07-10 00:55:56 +02:00
|
|
|
<version>4.13.2</version>
|
2022-06-15 17:05:28 +02:00
|
|
|
<scope>test</scope>
|
2021-06-18 02:41:48 +02:00
|
|
|
</dependency>
|
2021-03-21 12:53:43 +01:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
2022-07-20 13:18:57 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<version>3.2.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-sources</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2022-07-20 16:26:29 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>3.4.0</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<tags>
|
|
|
|
<tag>
|
|
|
|
<name>apiNote</name>
|
|
|
|
<placement>a</placement>
|
|
|
|
<head>API Note:</head>
|
|
|
|
</tag>
|
|
|
|
<tag>
|
|
|
|
<name>implSpec</name>
|
|
|
|
<placement>a</placement>
|
|
|
|
<head>Implementation Requirements:</head>
|
|
|
|
</tag>
|
|
|
|
<tag>
|
|
|
|
<name>implNote</name>
|
|
|
|
<placement>a</placement>
|
|
|
|
<head>Implementation Note:</head>
|
|
|
|
</tag>
|
|
|
|
</tags>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2021-03-21 12:53:43 +01:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|