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
55 lines
1.6 KiB
XML
55 lines
1.6 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-nms-v1_21_1</artifactId>
|
|
|
|
<properties>
|
|
<maven.compiler.source>21</maven.compiler.source>
|
|
<maven.compiler.target>21</maven.compiler.target>
|
|
</properties>
|
|
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>ca.bkaw</groupId>
|
|
<artifactId>paper-nms-maven-plugin</artifactId>
|
|
<version>1.4.4</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>process-classes</phase>
|
|
<goals>
|
|
<goal>remap</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>ca.bkaw</groupId>
|
|
<artifactId>paper-nms</artifactId>
|
|
<version>1.21.1-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>dev.lone</groupId>
|
|
<artifactId>VanillaCustomizer-core</artifactId>
|
|
<version>1.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</project> |