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>
|
2022-06-18 14:16:26 +00:00
|
|
|
<artifactId>T2CodeLib</artifactId>
|
2022-12-28 12:43:51 +00:00
|
|
|
<version>14.1</version>
|
2022-10-25 13:03:07 +00:00
|
|
|
<packaging>jar</packaging>
|
2021-11-28 01:13:21 +00:00
|
|
|
|
2022-12-28 12:42:55 +00:00
|
|
|
|
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>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
|
|
|
</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>
|
2022-10-25 13:03:07 +00:00
|
|
|
<repository>
|
|
|
|
<id>sonatype-oss-snapshots1</id>
|
|
|
|
<url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
2022-07-07 11:43:50 +00:00
|
|
|
<!-- Mojang / 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>
|
2022-07-07 11:43:50 +00:00
|
|
|
<!-- repo.t2code / T2Code -->
|
2021-11-28 01:13:21 +00:00
|
|
|
<repository>
|
2021-12-03 09:21:26 +00:00
|
|
|
<id>Builders-Paradise</id>
|
2021-12-22 18:34:35 +00:00
|
|
|
<url>https://repo.t2code.net/repository/Builders-Paradise/</url>
|
2021-11-28 01:13:21 +00:00
|
|
|
</repository>
|
2022-01-20 17:19:39 +00:00
|
|
|
<repository>
|
|
|
|
<id>T2Code</id>
|
|
|
|
<url>https://repo.t2code.net/repository/T2Code/</url>
|
|
|
|
</repository>
|
2022-07-07 11:43:50 +00:00
|
|
|
<!-- Vault-->
|
2021-11-28 01:13:21 +00:00
|
|
|
<repository>
|
|
|
|
<id>jitpack.io</id>
|
|
|
|
<url>https://jitpack.io</url>
|
|
|
|
</repository>
|
2022-07-07 11:43:50 +00:00
|
|
|
<!-- placeholderapi -->
|
2021-11-28 01:13:21 +00:00
|
|
|
<repository>
|
|
|
|
<id>placeholderapi</id>
|
2022-05-17 19:05:49 +00:00
|
|
|
<url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
|
2021-11-28 01:13:21 +00:00
|
|
|
</repository>
|
2022-07-07 11:43:50 +00:00
|
|
|
<!-- votingplugin -->
|
12.0 Innovation and Eco API change
The API for Economy has been rebuilt.
- - Class renamed: net.t2code.lib.Spigot.Lib.vault.Vault -> net.t2code.lib.Spigot.Lib.eco.Eco
- Methods renamed:
- buy(String prefix, Player p, Double price) -> moneyRemove(String prefix, Player player, Double price)
- addMoney(String prefix, Player p, Double price) -> moneyAdd(String prefix, Player player, Double price)
- New methods:
- itemRemove(Player player, String item, int amount)
- itemAdd(Player player, String item, int amount)
- votePointsRemove(String prefix, Player player, Integer amount) (for VotingPlugin)
- votePointsAdd(String prefix, Player player, Integer amount) (for VotingPlugin)
- VotingPlugin added to PluginCheck
2022-06-07 03:58:47 +00:00
|
|
|
<repository>
|
|
|
|
<id>BenCodez Repo</id>
|
|
|
|
<url>https://nexus.bencodez.com/repository/maven-public/</url>
|
|
|
|
</repository>
|
2022-11-10 09:09:07 +00:00
|
|
|
<!--Kyori MiniMessage
|
2022-11-03 06:57:53 +00:00
|
|
|
<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>
|
|
|
|
|
2022-11-03 06:57:53 +00:00
|
|
|
|
2021-11-28 01:13:21 +00:00
|
|
|
<dependencies>
|
2022-07-07 11:43:50 +00:00
|
|
|
<!-- Mojang / 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>
|
2022-12-22 00:43:40 +00:00
|
|
|
<version>1.19.3-R0.1-SNAPSHOT</version>
|
2021-11-28 01:13:21 +00:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2022-07-07 11:43:50 +00:00
|
|
|
<!-- repo.t2code / T2Code -->
|
2021-12-03 09:21:26 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.t2code</groupId>
|
|
|
|
<artifactId>bungee</artifactId>
|
2022-06-08 04:27:05 +00:00
|
|
|
<version>1642</version>
|
2022-11-13 18:01:24 +00:00
|
|
|
<scope>provided</scope>
|
2021-12-03 09:21:26 +00:00
|
|
|
</dependency>
|
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>
|
2022-07-07 11:43:50 +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>
|
2022-07-07 11:43:50 +00:00
|
|
|
<!-- placeholderapi -->
|
2021-11-28 01:13:21 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>me.clip</groupId>
|
|
|
|
<artifactId>placeholderapi</artifactId>
|
2022-12-22 00:43:40 +00:00
|
|
|
<version>2.11.2</version>
|
2021-11-28 01:13:21 +00:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2022-07-07 11:43:50 +00:00
|
|
|
<!-- votingplugin -->
|
12.0 Innovation and Eco API change
The API for Economy has been rebuilt.
- - Class renamed: net.t2code.lib.Spigot.Lib.vault.Vault -> net.t2code.lib.Spigot.Lib.eco.Eco
- Methods renamed:
- buy(String prefix, Player p, Double price) -> moneyRemove(String prefix, Player player, Double price)
- addMoney(String prefix, Player p, Double price) -> moneyAdd(String prefix, Player player, Double price)
- New methods:
- itemRemove(Player player, String item, int amount)
- itemAdd(Player player, String item, int amount)
- votePointsRemove(String prefix, Player player, Integer amount) (for VotingPlugin)
- votePointsAdd(String prefix, Player player, Integer amount) (for VotingPlugin)
- VotingPlugin added to PluginCheck
2022-06-07 03:58:47 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.bencodez</groupId>
|
|
|
|
<artifactId>votingplugin</artifactId>
|
2022-12-22 00:43:40 +00:00
|
|
|
<version>6.10.0</version>
|
12.0 Innovation and Eco API change
The API for Economy has been rebuilt.
- - Class renamed: net.t2code.lib.Spigot.Lib.vault.Vault -> net.t2code.lib.Spigot.Lib.eco.Eco
- Methods renamed:
- buy(String prefix, Player p, Double price) -> moneyRemove(String prefix, Player player, Double price)
- addMoney(String prefix, Player p, Double price) -> moneyAdd(String prefix, Player player, Double price)
- New methods:
- itemRemove(Player player, String item, int amount)
- itemAdd(Player player, String item, int amount)
- votePointsRemove(String prefix, Player player, Integer amount) (for VotingPlugin)
- votePointsAdd(String prefix, Player player, Integer amount) (for VotingPlugin)
- VotingPlugin added to PluginCheck
2022-06-07 03:58:47 +00:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2022-07-07 11:43:50 +00:00
|
|
|
<!--Kyori MiniMessage-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.kyori</groupId>
|
|
|
|
<artifactId>adventure-text-minimessage</artifactId>
|
2022-12-22 00:43:40 +00:00
|
|
|
<version>4.12.0</version>
|
2022-11-13 18:01:24 +00:00
|
|
|
<scope>compile</scope>
|
2022-07-07 11:43:50 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.kyori</groupId>
|
|
|
|
<artifactId>adventure-platform-bukkit</artifactId>
|
2022-12-22 00:43:40 +00:00
|
|
|
<version>4.2.0</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>
|
2022-12-22 00:43:40 +00:00
|
|
|
<version>4.2.0</version>
|
2022-11-14 17:45:54 +00:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
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>
|
|
|
|
<!-- 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>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpmime -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpmime</artifactId>
|
2022-12-22 00:43:40 +00:00
|
|
|
<version>4.5.14</version>
|
2022-11-14 00:06:44 +00:00
|
|
|
<scope>compile</scope>
|
2022-07-07 11:43:50 +00:00
|
|
|
</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>
|