2022-04-24 12:42:53 +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>
|
|
|
|
|
2022-08-17 00:27:25 +02:00
|
|
|
<groupId>io.github.ithotl</groupId>
|
2022-04-24 12:42:53 +02:00
|
|
|
<artifactId>PlayerStats</artifactId>
|
2022-08-17 17:22:59 +02:00
|
|
|
<version>1.7</version>
|
2022-04-24 12:42:53 +02:00
|
|
|
|
2022-08-15 22:40:54 +02:00
|
|
|
<name>PlayerStats</name>
|
|
|
|
<description>Statistics Plugin</description>
|
|
|
|
<url>https://www.spigotmc.org/resources/playerstats.102347/</url>
|
|
|
|
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>MIT License</name>
|
|
|
|
<url>http://www.opensource.org/licenses/mit-license.php</url>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<name>Artemis</name>
|
|
|
|
<email>artemis.the.gr8@gmail.com</email>
|
|
|
|
<url>https://github.com/Artemis-the-gr8</url>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
<url>https://github.com/itHotL/PlayerStats/tree/main</url>
|
|
|
|
<connection>scm:git:git://github.com/itHotL/PlayerStats.git</connection>
|
|
|
|
<developerConnection>scm:git:git://github.com/itHotL/PlayerStats.git</developerConnection>
|
|
|
|
</scm>
|
|
|
|
|
2022-05-25 17:29:51 +02:00
|
|
|
<properties>
|
2022-06-16 12:56:11 +02:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2022-07-12 23:06:30 +02:00
|
|
|
<maven.compiler.source>16</maven.compiler.source>
|
|
|
|
<maven.compiler.target>16</maven.compiler.target>
|
2022-05-25 17:29:51 +02:00
|
|
|
</properties>
|
|
|
|
|
2022-04-24 12:42:53 +02:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
2022-06-15 01:08:00 +02:00
|
|
|
<id>spigot-repo</id> <!-- Spigot API -->
|
2022-04-24 12:42:53 +02:00
|
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
2022-05-25 17:29:51 +02:00
|
|
|
|
|
|
|
<repository>
|
2022-06-08 17:21:42 +02:00
|
|
|
<id>sonatype-oss-snapshots1</id> <!-- the Adventure repository for development builds -->
|
2022-05-25 17:29:51 +02:00
|
|
|
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
2022-06-15 01:08:00 +02:00
|
|
|
|
|
|
|
<repository>
|
|
|
|
<id>maven-central</id> <!-- Config-Updater -->
|
|
|
|
<url>https://oss.sonatype.org/content/groups/public</url>
|
|
|
|
</repository>
|
2022-07-22 19:28:40 +02:00
|
|
|
|
|
|
|
<repository>
|
|
|
|
<id>placeholderapi</id> <!-- Placeholder API -->
|
|
|
|
<url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
|
|
|
|
</repository>
|
2022-04-24 12:42:53 +02:00
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
2022-06-08 21:05:24 +02:00
|
|
|
<version>1.19-R0.1-SNAPSHOT</version>
|
2022-04-24 12:42:53 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2022-05-05 02:14:56 +02:00
|
|
|
|
2022-06-23 17:30:52 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.kyori</groupId>
|
|
|
|
<artifactId>adventure-api</artifactId>
|
|
|
|
<version>4.11.0</version>
|
|
|
|
</dependency>
|
|
|
|
|
2022-05-25 17:29:51 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.kyori</groupId>
|
|
|
|
<artifactId>adventure-platform-bukkit</artifactId>
|
2022-08-04 15:11:59 +02:00
|
|
|
<version>4.1.2</version>
|
2022-06-14 12:09:59 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.kyori</groupId>
|
|
|
|
<artifactId>adventure-text-minimessage</artifactId>
|
|
|
|
<version>4.11.0</version>
|
2022-05-25 17:29:51 +02:00
|
|
|
</dependency>
|
|
|
|
|
2022-07-22 19:28:40 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>me.clip</groupId>
|
|
|
|
<artifactId>placeholderapi</artifactId>
|
|
|
|
<version>2.11.2</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2022-06-15 01:08:00 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.tchristofferson</groupId>
|
|
|
|
<artifactId>ConfigUpdater</artifactId>
|
|
|
|
<version>2.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
|
2022-07-26 01:17:33 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.bstats</groupId>
|
|
|
|
<artifactId>bstats-bukkit</artifactId>
|
|
|
|
<version>3.0.0</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2022-05-05 02:14:56 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains</groupId>
|
|
|
|
<artifactId>annotations</artifactId>
|
|
|
|
<version>23.0.0</version>
|
|
|
|
</dependency>
|
2022-04-24 12:42:53 +02:00
|
|
|
</dependencies>
|
|
|
|
|
2022-05-25 17:29:51 +02:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.8.1</version>
|
|
|
|
<configuration>
|
2022-07-12 23:06:30 +02:00
|
|
|
<source>16</source>
|
|
|
|
<target>16</target>
|
2022-05-25 17:29:51 +02:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2022-07-12 16:26:47 +02:00
|
|
|
<version>3.3.0</version>
|
2022-05-25 17:29:51 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2022-06-29 21:30:25 +02:00
|
|
|
<configuration>
|
|
|
|
<transformers>
|
|
|
|
<transformer
|
|
|
|
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
2022-08-17 00:27:25 +02:00
|
|
|
<mainClass>com.artemis.the.gr8.playerstats.Main</mainClass>
|
2022-06-29 21:30:25 +02:00
|
|
|
</transformer>
|
|
|
|
</transformers>
|
|
|
|
<artifactSet>
|
|
|
|
<excludes>
|
|
|
|
<exclude>org.jetbrains:annotations</exclude>
|
|
|
|
</excludes>
|
|
|
|
</artifactSet>
|
2022-07-12 16:26:47 +02:00
|
|
|
<relocations>
|
|
|
|
<relocation>
|
|
|
|
<pattern>net.kyori</pattern>
|
2022-08-17 00:27:25 +02:00
|
|
|
<shadedPattern>com.artemis.the.gr8.lib.kyori</shadedPattern>
|
2022-07-12 16:26:47 +02:00
|
|
|
</relocation>
|
|
|
|
<relocation>
|
|
|
|
<pattern>com.tchristofferson</pattern>
|
2022-08-17 00:27:25 +02:00
|
|
|
<shadedPattern>com.artemis.the.gr8.util.tchristofferson</shadedPattern>
|
2022-07-12 16:26:47 +02:00
|
|
|
</relocation>
|
2022-07-26 01:17:33 +02:00
|
|
|
<relocation>
|
|
|
|
<pattern>org.bstats</pattern>
|
2022-08-17 00:27:25 +02:00
|
|
|
<shadedPattern>com.artemis.the.gr8.util.bstats</shadedPattern>
|
2022-07-12 16:26:47 +02:00
|
|
|
</relocation>
|
|
|
|
</relocations>
|
2022-06-29 21:30:25 +02:00
|
|
|
<filters>
|
|
|
|
<filter>
|
|
|
|
<artifact>*:*</artifact>
|
|
|
|
<excludes>
|
|
|
|
<exclude>META-INF/versions/**</exclude>
|
|
|
|
<exclude>META-INF/maven/com.tchristofferson/**</exclude>
|
|
|
|
<exclude>images/**</exclude>
|
|
|
|
</excludes>
|
|
|
|
</filter>
|
2022-07-12 16:26:47 +02:00
|
|
|
<filter>
|
|
|
|
<artifact>net.kyori:*</artifact>
|
|
|
|
<excludes>
|
|
|
|
<exclude>META-INF/**</exclude>
|
|
|
|
</excludes>
|
|
|
|
</filter>
|
|
|
|
<filter>
|
|
|
|
<artifact>com.tchristofferson:*</artifact>
|
|
|
|
<excludes>
|
|
|
|
<exclude>META-INF/**</exclude>
|
|
|
|
</excludes>
|
|
|
|
</filter>
|
2022-07-26 13:20:13 +02:00
|
|
|
<filter>
|
|
|
|
<artifact>org.bstats:*</artifact>
|
|
|
|
<excludes>
|
|
|
|
<exclude>META-INF/**</exclude>
|
|
|
|
</excludes>
|
|
|
|
</filter>
|
2022-06-29 21:30:25 +02:00
|
|
|
</filters>
|
|
|
|
</configuration>
|
2022-05-25 17:29:51 +02:00
|
|
|
</plugin>
|
2022-07-26 13:20:13 +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>
|
2022-08-17 17:22:59 +02:00
|
|
|
<phase>deploy</phase>
|
2022-07-26 13:20:13 +02:00
|
|
|
<goals>
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2022-08-17 11:34:46 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
<version>3.0.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>sign-artifacts</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>sign</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2022-08-15 23:20:25 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2022-08-16 17:14:22 +02:00
|
|
|
<version>3.4.1</version>
|
2022-08-15 23:20:25 +02:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-javadocs</id>
|
2022-08-17 17:22:59 +02:00
|
|
|
<phase>deploy</phase>
|
2022-08-15 23:20:25 +02:00
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2022-08-16 17:14:22 +02:00
|
|
|
<configuration>
|
|
|
|
<additionalOptions>-Xdoclint:none</additionalOptions>
|
|
|
|
<failOnError>false</failOnError>
|
|
|
|
<quiet>true</quiet>
|
|
|
|
<show>protected</show>
|
|
|
|
<groups>
|
|
|
|
<group>
|
|
|
|
<title>API</title>
|
2022-08-17 00:27:25 +02:00
|
|
|
<packages>com.artemis.the.gr8.playerstats.api</packages>
|
2022-08-16 17:14:22 +02:00
|
|
|
</group>
|
|
|
|
</groups>
|
|
|
|
<detectLinks>true</detectLinks>
|
|
|
|
<dependencyLinks>
|
|
|
|
<dependencyLink>
|
|
|
|
<groupId>org.spigotmc</groupId>
|
|
|
|
<artifactId>spigot-api</artifactId>
|
|
|
|
<url>https://hub.spigotmc.org/javadocs/bukkit/</url>
|
|
|
|
</dependencyLink>
|
|
|
|
|
|
|
|
<dependencyLink>
|
|
|
|
<groupId>net.kyori</groupId>
|
|
|
|
<artifactId>adventure-api</artifactId>
|
|
|
|
<url>https://jd.adventure.kyori.net/api/4.11.0/</url>
|
|
|
|
</dependencyLink>
|
|
|
|
|
|
|
|
<dependencyLink>
|
|
|
|
<groupId>net.kyori</groupId>
|
|
|
|
<artifactId>adventure-text-minimessage</artifactId>
|
|
|
|
<url>https://jd.adventure.kyori.net/text-minimessage/4.11.0/</url>
|
|
|
|
</dependencyLink>
|
|
|
|
|
|
|
|
<dependencyLink>
|
|
|
|
<groupId>net.kyori</groupId>
|
|
|
|
<artifactId>adventure-platform-bukkit</artifactId>
|
|
|
|
<url>https://jd.adventure.kyori.net/</url>
|
|
|
|
</dependencyLink>
|
|
|
|
</dependencyLinks>
|
|
|
|
</configuration>
|
2022-08-15 23:20:25 +02:00
|
|
|
</plugin>
|
2022-08-17 14:09:47 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<version>3.0.0</version>
|
|
|
|
</plugin>
|
2022-05-25 17:29:51 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2022-08-17 14:09:47 +02:00
|
|
|
<distributionManagement>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>ossrh</id>
|
|
|
|
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
<repository>
|
|
|
|
<id>ossrh</id>
|
|
|
|
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
2022-04-24 12:42:53 +02:00
|
|
|
</project>
|