3
0
Mirror von https://github.com/TheSilentPro/HeadDB.git synchronisiert 2024-12-26 02:50:07 +01:00
HeadDB/pom.xml

169 Zeilen
6.4 KiB
XML

2020-10-19 17:34:36 +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>
<groupId>tsp.headdb</groupId>
<artifactId>HeadDB</artifactId>
2024-11-28 14:24:26 +01:00
<version>5.0.0-rc.13</version>
2020-10-19 17:34:36 +02:00
<packaging>jar</packaging>
2022-11-06 15:07:15 +01:00
<name>HeadDB</name>
<description>Database with thousands of heads</description>
2022-03-18 00:13:19 +01:00
<properties>
2022-11-05 01:38:37 +01:00
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2024-11-27 04:02:26 +01:00
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
2022-11-06 15:07:15 +01:00
<build.author>TheSilentPro (Silent)</build.author>
2022-11-06 15:43:41 +01:00
<maven.build.timestamp.format>dd-MM-yyyy HH:mm:ss</maven.build.timestamp.format>
2022-11-06 15:07:15 +01:00
<build.timestamp>${maven.build.timestamp}</build.timestamp>
2022-03-18 00:13:19 +01:00
</properties>
2022-11-06 15:07:15 +01:00
<scm>
<connection>scm:git:git@github.com:TheSilentPro/HeadDB.git</connection>
<developerConnection>scm:git:git@github.com:TheSilentPro/HeadDB.git</developerConnection>
<url>git@github.com:TheSilentPro/HeadDB.git</url>
</scm>
2020-10-19 17:34:36 +02:00
<repositories>
<repository>
2021-12-25 14:39:02 +01:00
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
2020-10-19 17:34:36 +02:00
</repository>
<repository>
<id>mojang-repo</id>
<url>https://libraries.minecraft.net/</url>
</repository>
2020-12-08 22:22:41 +01:00
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
2020-12-20 16:03:31 +01:00
<repository>
<id>CodeMC</id>
<url>https://repo.codemc.org/repository/maven-public</url>
2020-12-20 16:03:31 +01:00
</repository>
2022-05-18 23:01:43 +02:00
<repository>
<id>placeholderapi</id>
<url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
</repository>
2020-10-19 17:34:36 +02:00
</repositories>
<dependencies>
2022-11-01 16:54:40 +01:00
<!-- Hard Dependencies (Provided) -->
2020-10-19 17:34:36 +02:00
<dependency>
2021-12-25 14:39:02 +01:00
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
2024-11-27 04:02:26 +01:00
<version>1.21.1-R0.1-SNAPSHOT</version>
2020-10-19 17:34:36 +02:00
<scope>provided</scope>
</dependency>
<dependency>
2024-11-27 04:02:26 +01:00
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.16</version>
2020-10-19 17:34:36 +02:00
<scope>provided</scope>
</dependency>
2022-11-01 16:54:40 +01:00
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
2024-11-27 04:02:26 +01:00
<version>2.11.0</version>
2022-11-01 16:54:40 +01:00
<scope>provided</scope>
</dependency>
2022-11-09 03:32:30 +01:00
<dependency>
2024-11-27 04:02:26 +01:00
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>3.47.0.0</version>
<scope>provided</scope>
2023-11-14 23:28:56 +01:00
</dependency>
2024-11-27 04:02:26 +01:00
<!-- Hard Dependencies (Shaded) -->
2023-11-14 23:28:56 +01:00
<dependency>
<groupId>com.github.TheSilentPro</groupId>
2024-11-27 04:02:26 +01:00
<artifactId>InvLib</artifactId>
<version>c184c31f6e</version>
2022-11-09 03:32:30 +01:00
</dependency>
2022-11-01 16:54:40 +01:00
<!-- Soft Dependencies -->
2023-11-14 23:28:56 +01:00
<!--suppress VulnerableLibrariesLocal -->
<dependency>
<groupId>com.github.MilkBowl</groupId>
<artifactId>VaultAPI</artifactId>
<version>1.7</version>
<scope>provided</scope>
</dependency>
2022-05-18 23:01:43 +02:00
<dependency>
<groupId>me.clip</groupId>
<artifactId>placeholderapi</artifactId>
2023-11-14 23:28:56 +01:00
<version>2.11.5</version>
2022-05-18 23:01:43 +02:00
<scope>provided</scope>
</dependency>
2020-10-19 17:34:36 +02:00
</dependencies>
2020-10-30 16:49:13 +01:00
<build>
2022-11-06 15:07:15 +01:00
<finalName>${project.name}</finalName>
2021-04-21 18:53:10 +02:00
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
2020-10-30 16:49:13 +01:00
<plugins>
2022-11-06 15:07:15 +01:00
<!-- Compiler -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
2024-11-27 04:02:26 +01:00
<version>3.13.0</version>
2022-11-06 15:07:15 +01:00
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
2024-11-27 04:02:26 +01:00
<!-- Shade Plugin Configuration -->
2020-12-08 22:22:41 +01:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
2024-11-27 04:02:26 +01:00
<version>3.6.0</version>
2020-12-08 22:22:41 +01:00
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
2021-12-30 13:28:57 +01:00
<mainClass>tsp.headdb.HeadDB</mainClass>
2020-12-08 22:22:41 +01:00
</transformer>
</transformers>
2023-02-12 22:14:40 +01:00
<relocations>
<relocation>
<pattern>net.wesjd.anvilgui</pattern>
<shadedPattern>tsp.headdb.core.util.anvilgui</shadedPattern>
</relocation>
</relocations>
<filters>
<filter>
<artifact>*:*</artifact>
<excludeDefaults>false</excludeDefaults>
<includes>
2024-11-27 04:02:26 +01:00
<include>tsp/headdb/core/util/anvilgui/**</include>
2023-02-12 22:14:40 +01:00
</includes>
2024-11-27 04:02:26 +01:00
<excludes>
<exclude>org/yaml/**</exclude>
<exclude>META-INF/maven/org.yaml</exclude>
<exclude>javax/**</exclude>
</excludes>
2023-02-12 22:14:40 +01:00
</filter>
</filters>
2020-12-08 22:22:41 +01:00
</configuration>
</execution>
</executions>
</plugin>
2020-10-30 16:49:13 +01:00
</plugins>
</build>
2020-10-19 17:34:36 +02:00
</project>