This commit is contained in:
0x01FE 2026-04-12 15:55:32 -05:00
parent 5659424a78
commit 3a9cc2dfe0
7 changed files with 23 additions and 16 deletions

23
pom.xml
View File

@ -1,10 +1,17 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <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/maven-v4_0_0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>net.hexa</groupId> <groupId>net.hexa</groupId>
<artifactId>MythicItems</artifactId> <artifactId>MythicItems</artifactId>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT-1.21.11</version>
<properties>
<minecraft.version>1.21.11</minecraft.version>
<spigot.version>${minecraft.version}-R0.1-SNAPSHOT</spigot.version>
<java.version>14</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<repositories> <repositories>
<repository> <repository>
@ -12,14 +19,16 @@
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url> <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository> </repository>
</repositories> </repositories>
<build> <build>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration> <configuration>
<source>14</source> <source>${java.version}</source>
<target>14</target> <target>${java.version}</target>
</configuration> </configuration>
</plugin> </plugin>
</plugins> </plugins>
@ -29,13 +38,13 @@
<dependency> <dependency>
<groupId>org.spigotmc</groupId> <groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId> <artifactId>spigot-api</artifactId>
<version>1.21.4-R0.1-SNAPSHOT</version> <version>${spigot.version}</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.json</groupId> <groupId>org.json</groupId>
<artifactId>json</artifactId> <artifactId>json</artifactId>
<version>20250107</version> <version>20250107</version>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -1,6 +1,6 @@
package net.hexa.MythicItems; package net.hexa.MythicItems;
import net.hexa.MythicItems.Mythics.MythicItem; import net.hexa.MythicItems.mythics.MythicItem;
import org.bukkit.command.Command; import org.bukkit.command.Command;
import org.bukkit.command.CommandExecutor; import org.bukkit.command.CommandExecutor;
import org.bukkit.command.CommandSender; import org.bukkit.command.CommandSender;

View File

@ -1,7 +1,6 @@
package net.hexa.MythicItems; package net.hexa.MythicItems;
import net.hexa.MythicItems.Mythics.MythicEssence; import net.hexa.MythicItems.mythics.MythicItem;
import net.hexa.MythicItems.Mythics.MythicItem;
import org.bukkit.command.Command; import org.bukkit.command.Command;
import org.bukkit.command.CommandExecutor; import org.bukkit.command.CommandExecutor;
import org.bukkit.command.CommandSender; import org.bukkit.command.CommandSender;

View File

@ -1,7 +1,7 @@
package net.hexa.MythicItems; package net.hexa.MythicItems;
import net.hexa.MythicItems.Mythics.MythicEssence; import net.hexa.MythicItems.mythics.MythicEssence;
import net.hexa.MythicItems.Mythics.MythicItem; import net.hexa.MythicItems.mythics.MythicItem;
import org.bukkit.Bukkit; import org.bukkit.Bukkit;
import org.bukkit.entity.Player; import org.bukkit.entity.Player;

View File

@ -1,4 +1,4 @@
package net.hexa.MythicItems.Mythics; package net.hexa.MythicItems.mythics;
import org.bukkit.Bukkit; import org.bukkit.Bukkit;
import org.bukkit.NamespacedKey; import org.bukkit.NamespacedKey;

View File

@ -1,6 +1,5 @@
package net.hexa.MythicItems.Mythics; package net.hexa.MythicItems.mythics;
import org.bukkit.Material;
import org.bukkit.inventory.ItemStack; import org.bukkit.inventory.ItemStack;
import java.util.List; import java.util.List;

View File

@ -1,4 +1,4 @@
package net.hexa.MythicItems.Mythics; package net.hexa.MythicItems.mythics;
import org.json.*; import org.json.*;