mirror of
https://github.com/PSYCHEER/VanillaCustomizer.git
synced 2025-12-19 15:09:17 +00:00
nbt matcher byte value not working https://github.com/PluginBugs/Issues-VanillaCustomizer/issues/12 1.21.1 support https://github.com/PluginBugs/Issues-VanillaCustomizer/issues/11 1.20.6 support https://github.com/PluginBugs/Issues-VanillaCustomizer/issues/10 `is_vanilla_item: false` not working correctly https://github.com/PluginBugs/Issues-VanillaCustomizer/issues/9 Newest LoneLibs support https://github.com/PluginBugs/Issues-VanillaCustomizer/issues/8 Ignoring inventory rule is ignored https://github.com/PluginBugs/Issues-VanillaCustomizer/issues/7 ERROR -> /vanillacustomizer small https://github.com/PluginBugs/Issues-VanillaCustomizer/issues/5 Invalid NBT match rule https://github.com/PluginBugs/Issues-VanillaCustomizer/issues/4
96 lines
3.1 KiB
XML
96 lines
3.1 KiB
XML
<?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">
|
|
<parent>
|
|
<artifactId>VanillaCustomizer</artifactId>
|
|
<groupId>dev.lone</groupId>
|
|
<version>1.0</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>VanillaCustomizer-core</artifactId>
|
|
|
|
<repositories>
|
|
<!-- This adds the Spigot Maven repository to the build -->
|
|
<repository>
|
|
<id>spigot-repo</id>
|
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>jitpack-repo</id>
|
|
<url>https://jitpack.io</url>
|
|
</repository>
|
|
<repository>
|
|
<id>maven-central</id>
|
|
<url>https://oss.sonatype.org/content/groups/public</url>
|
|
</repository>
|
|
<repository>
|
|
<id>sonatype</id>
|
|
<url>https://oss.sonatype.org/content/groups/public/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>papermc</id>
|
|
<url>https://papermc.io/repo/repository/maven-public/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>sk89q-repo</id>
|
|
<url>https://maven.enginehub.org/repo/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>codemc</id>
|
|
<url>https://repo.codemc.org/repository/maven-public/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>jitpack.io</id>
|
|
<url>https://jitpack.io</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>net.md-5</groupId>
|
|
<artifactId>bungeecord-chat</artifactId>
|
|
<version>1.20-R0.2</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.papermc.paper</groupId>
|
|
<artifactId>paper-api</artifactId>
|
|
<version>1.21.1-R0.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.spigotmc</groupId>
|
|
<artifactId>spigot</artifactId>
|
|
<version>1.21.1-R0.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>dev.lone.LoneLibs</groupId>
|
|
<artifactId>LoneLibs</artifactId>
|
|
<version>1.0</version>
|
|
<scope>system</scope>
|
|
<systemPath>${jars_libs_folder}/LoneLibs.jar</systemPath>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>libs</groupId>
|
|
<artifactId>ProtocolLib</artifactId>
|
|
<version>1.0</version>
|
|
<scope>system</scope>
|
|
<systemPath>${jars_libs_folder}/ProtocolLib.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jetbrains</groupId>
|
|
<artifactId>annotations</artifactId>
|
|
<version>24.0.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project> |