2024-12-07 14:33:28 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2024-12-07 18:09:35 +01:00
|
|
|
<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">
|
2024-12-07 14:33:28 +01:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<groupId>eu.m724</groupId>
|
|
|
|
<artifactId>mstats-spigot</artifactId>
|
2024-12-07 18:09:36 +01:00
|
|
|
<version>0.1.1-SNAPSHOT</version>
|
2024-12-07 14:33:28 +01:00
|
|
|
|
2024-12-07 18:08:10 +01:00
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>m724</id>
|
|
|
|
<name>Minecon724</name>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>GPL-3.0-or-later</name>
|
|
|
|
<url>https://www.gnu.org/licenses/gpl-3.0.en.html</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
<comments>The GNU General Public License is a free, copyleft license for software and other kinds of works.</comments>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
<url>https://git.m724.eu/Minecon724/mstats-spigot</url>
|
|
|
|
<description>mStats client for Spigot</description>
|
|
|
|
|
2024-12-07 14:33:28 +01:00
|
|
|
<properties>
|
2025-01-05 11:10:55 +01:00
|
|
|
<maven.compiler.release>11</maven.compiler.release>
|
2024-12-07 14:33:28 +01:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.spigot.version>1.21.1-R0.1-SNAPSHOT</project.spigot.version>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>spigot-repo</id>
|
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>m724-repo</id>
|
|
|
|
<url>https://git.m724.eu/api/packages/Minecon724/maven</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
2025-01-05 11:10:55 +01:00
|
|
|
<version>1.16.5-R0.1-SNAPSHOT</version>
|
2024-12-07 14:33:28 +01:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2024-12-07 18:08:10 +01:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.sonatype.central</groupId>
|
|
|
|
<artifactId>central-publishing-maven-plugin</artifactId>
|
|
|
|
<version>0.6.0</version>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
|
|
|
<publishingServerId>central</publishingServerId>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<version>3.3.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-sources</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>3.11.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
<version>3.2.7</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>sign-artifacts</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>sign</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
|
|
<version>3.1.1</version>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2024-12-07 14:33:28 +01:00
|
|
|
<scm>
|
2024-12-07 18:08:10 +01:00
|
|
|
<connection>scm:git:git@git.m724.eu:Minecon724/mstats-spigot.git</connection>
|
2024-12-07 14:33:28 +01:00
|
|
|
<developerConnection>scm:git:git@git.m724.eu:Minecon724/mstats-spigot.git</developerConnection>
|
2024-12-07 18:08:10 +01:00
|
|
|
<url>https://git.m724.eu/Minecon724/mstats-spigot</url>
|
2024-12-07 18:09:36 +01:00
|
|
|
<tag>HEAD</tag>
|
2024-12-07 18:09:35 +01:00
|
|
|
</scm>
|
2024-12-07 14:33:28 +01:00
|
|
|
</project>
|