T2CodeLib/pom.xml

233 lines
7.5 KiB
XML
Raw Normal View History

2021-11-28 01:13:21 +00: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>net.t2code</groupId>
<artifactId>T2CodeLib</artifactId>
2023-12-07 17:29:51 +00:00
<version>16.2</version>
<!--version>VERSION_snapshot-0</version-->
<!--version>VERSION_beta-0</version-->
<!--version>VERSION_dev-0</version-->
2022-10-25 13:03:07 +00:00
<packaging>jar</packaging>
2021-11-28 01:13:21 +00:00
<name>T2CodeLib</name>
<properties>
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
2022-11-13 18:01:24 +00:00
<finalName>${project.artifactId}_${project.version}</finalName>
2021-11-28 01:13:21 +00:00
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>9</source>
<target>9</target>
2021-11-28 01:13:21 +00:00
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
2022-11-13 18:01:24 +00:00
<relocations>
<relocation>
<pattern>net.kyori.adventure</pattern>
<shadedPattern>net.t2code.t2codelib.shaded.adventure</shadedPattern>
</relocation>
</relocations>
2021-11-28 01:13:21 +00:00
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
<repositories>
2023-02-27 22:35:46 +00:00
<!-- Spigot -->
2021-11-28 01:13:21 +00:00
<repository>
2021-12-03 09:21:26 +00:00
<id>spigot-repo</id>
2021-11-28 01:13:21 +00:00
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
2023-02-27 22:35:46 +00:00
<!-- Mojang authlib -->
2021-11-28 01:13:21 +00:00
<repository>
2023-02-27 22:35:46 +00:00
<id>minecraft-repo</id>
<url>https://libraries.minecraft.net/</url>
2021-11-28 01:13:21 +00:00
</repository>
2023-02-27 22:35:46 +00:00
<!-- Bungee -->
<repository>
<id>bungeecord-repo</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</repository>
<!-- repo.t2code / T2Code -->
2022-01-20 17:19:39 +00:00
<repository>
<id>T2Code</id>
<url>https://repo.t2code.net/repository/T2Code/</url>
</repository>
2023-02-27 22:35:46 +00:00
<!-- Vault-->
2021-11-28 01:13:21 +00:00
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
2023-02-27 22:35:46 +00:00
<!-- placeholderapi -->
2021-11-28 01:13:21 +00:00
<repository>
<id>placeholderapi</id>
<url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
2021-11-28 01:13:21 +00:00
</repository>
2023-02-27 22:35:46 +00:00
<!-- votingplugin -->
<repository>
<id>BenCodez Repo</id>
<url>https://nexus.bencodez.com/repository/maven-public/</url>
</repository>
2023-02-27 22:35:46 +00:00
2022-11-10 09:09:07 +00:00
<!--Kyori MiniMessage
<repository>
<id>sonatype-oss-snapshots1</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
2022-11-10 09:09:07 +00:00
</repository>-->
2021-11-28 01:13:21 +00:00
</repositories>
2021-11-28 01:13:21 +00:00
<dependencies>
2023-02-27 22:35:46 +00:00
<!-- Spigot-->
2021-11-28 01:13:21 +00:00
<dependency>
<groupId>org.spigotmc</groupId>
2022-06-08 04:27:05 +00:00
<artifactId>spigot-api</artifactId>
2023-12-07 15:58:39 +00:00
<version>1.20.2-R0.1-SNAPSHOT</version>
2021-11-28 01:13:21 +00:00
<scope>provided</scope>
</dependency>
2023-02-27 22:35:46 +00:00
<!-- Mojang authlib -->
2021-12-03 09:21:26 +00:00
<dependency>
2023-02-27 22:35:46 +00:00
<groupId>com.mojang</groupId>
<artifactId>authlib</artifactId>
<version>1.5.21</version>
<scope>provided</scope>
</dependency>
<!-- Bungee -->
<dependency>
<groupId>net.md-5</groupId>
<artifactId>bungeecord-api</artifactId>
<version>1.20-R0.1-SNAPSHOT</version>
2023-02-27 22:35:46 +00:00
<type>jar</type>
2022-11-13 18:01:24 +00:00
<scope>provided</scope>
2021-12-03 09:21:26 +00:00
</dependency>
2023-02-27 22:35:46 +00:00
<dependency>
<groupId>net.md-5</groupId>
<artifactId>bungeecord-api</artifactId>
<version>1.19-R0.1-SNAPSHOT</version>
<type>javadoc</type>
<scope>provided</scope>
</dependency>
<!-- repo.t2code / T2Code -->
2022-01-20 17:19:39 +00:00
<dependency>
<groupId>net.t2code</groupId>
<artifactId>LuckyBox-API</artifactId>
<version>4.2.7</version>
2022-11-13 18:01:24 +00:00
<scope>provided</scope>
2022-01-20 17:19:39 +00:00
</dependency>
2023-02-27 22:35:46 +00:00
<!-- Vault-->
2021-11-28 01:13:21 +00:00
<dependency>
<groupId>com.github.MilkBowl</groupId>
<artifactId>VaultAPI</artifactId>
<version>1.7</version>
<scope>provided</scope>
</dependency>
2023-02-27 22:35:46 +00:00
<!-- placeholderapi -->
2021-11-28 01:13:21 +00:00
<dependency>
<groupId>me.clip</groupId>
<artifactId>placeholderapi</artifactId>
<version>2.11.3</version>
2021-11-28 01:13:21 +00:00
<scope>provided</scope>
</dependency>
2023-02-27 22:35:46 +00:00
<!-- votingplugin -->
<dependency>
<groupId>com.bencodez</groupId>
<artifactId>votingplugin</artifactId>
2023-04-23 10:29:38 +00:00
<version>6.12.1</version>
<scope>provided</scope>
</dependency>
2023-02-27 22:35:46 +00:00
<!--Kyori MiniMessage-->
<dependency>
<groupId>net.kyori</groupId>
<artifactId>adventure-text-minimessage</artifactId>
<version>4.14.0</version>
2022-11-13 18:01:24 +00:00
<scope>compile</scope>
</dependency>
<dependency>
<groupId>net.kyori</groupId>
<artifactId>adventure-platform-bukkit</artifactId>
2023-12-07 15:58:39 +00:00
<version>4.3.1</version>
2022-11-13 18:01:24 +00:00
<scope>compile</scope>
</dependency>
2022-11-14 17:45:54 +00:00
<dependency>
<groupId>net.kyori</groupId>
<artifactId>adventure-platform-bungeecord</artifactId>
2023-12-07 15:58:39 +00:00
<version>4.3.1</version>
2022-11-14 17:45:54 +00:00
<scope>compile</scope>
</dependency>
2023-02-27 22:35:46 +00:00
2022-11-13 18:01:24 +00:00
<!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.24</version>
<scope>provided</scope>
</dependency>
2023-02-27 22:35:46 +00:00
2022-11-13 18:01:24 +00:00
<!-- https://mvnrepository.com/artifact/org.json/json -->
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20220924</version>
2022-11-14 00:06:44 +00:00
<scope>compile</scope>
2022-11-13 18:01:24 +00:00
</dependency>
2023-02-27 22:35:46 +00:00
2022-11-13 18:01:24 +00:00
<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpmime -->
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpmime</artifactId>
<version>4.5.14</version>
2022-11-14 00:06:44 +00:00
<scope>compile</scope>
</dependency>
2023-12-07 17:29:51 +00:00
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20230227</version>
<scope>compile</scope>
</dependency>
2021-11-28 01:13:21 +00:00
</dependencies>
2022-11-13 18:01:24 +00:00
2021-11-28 01:13:21 +00:00
</project>