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

17
pom.xml
View File

@ -4,7 +4,14 @@
<groupId>net.hexa</groupId>
<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>
<repository>
@ -12,14 +19,16 @@
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<source>14</source>
<target>14</target>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
</plugins>
@ -29,7 +38,7 @@
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.21.4-R0.1-SNAPSHOT</version>
<version>${spigot.version}</version>
<scope>provided</scope>
</dependency>
<dependency>

View File

@ -1,6 +1,6 @@
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.CommandExecutor;
import org.bukkit.command.CommandSender;

View File

@ -1,7 +1,6 @@
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.CommandExecutor;
import org.bukkit.command.CommandSender;

View File

@ -1,7 +1,7 @@
package net.hexa.MythicItems;
import net.hexa.MythicItems.Mythics.MythicEssence;
import net.hexa.MythicItems.Mythics.MythicItem;
import net.hexa.MythicItems.mythics.MythicEssence;
import net.hexa.MythicItems.mythics.MythicItem;
import org.bukkit.Bukkit;
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.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 java.util.List;

View File

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