From 2e7ebf3791dd82efbffb93be35ebbf27b4dcff0a Mon Sep 17 00:00:00 2001 From: WildInterloper <156627888+WildInterloper@users.noreply.github.com> Date: Tue, 5 Mar 2024 00:11:16 -0500 Subject: [PATCH] Init, player armor stuff --- pom.xml | 72 +++++++++++++++++++ .../nvus/nvus_prison_setup/PrisonSetup.java | 4 +- 2 files changed, 74 insertions(+), 2 deletions(-) create mode 100644 pom.xml diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..d0b2b1a --- /dev/null +++ b/pom.xml @@ -0,0 +1,72 @@ + + + 4.0.0 + + me.NVus + NVus_Prison_Setup + 0.1-SNAPSHOT + jar + + PrisonSetup + + + 1.8 + UTF-8 + + https://FNGnation.net + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.8.1 + + ${java.version} + ${java.version} + + + + org.apache.maven.plugins + maven-shade-plugin + 3.2.4 + + + package + + shade + + + + + + + + src/main/resources + true + + + + + + + papermc-repo + https://repo.papermc.io/repository/maven-public/ + + + sonatype + https://oss.sonatype.org/content/groups/public/ + + + + + + io.papermc.paper + paper-api + 1.20.4-R0.1-SNAPSHOT + provided + + + diff --git a/src/main/java/me/nvus/nvus_prison_setup/PrisonSetup.java b/src/main/java/me/nvus/nvus_prison_setup/PrisonSetup.java index f8625c9..5fee269 100644 --- a/src/main/java/me/nvus/nvus_prison_setup/PrisonSetup.java +++ b/src/main/java/me/nvus/nvus_prison_setup/PrisonSetup.java @@ -12,13 +12,13 @@ public final class PrisonSetup extends JavaPlugin { public void onEnable() { getServer().getPluginManager().registerEvents(new PlayerSpawn(), this); getServer().getPluginManager().registerEvents(new PlayerArmor(), this); - getLogger().info(ChatColor.GREEN + "NVusTags has been enabled successfully!"); + getLogger().info(ChatColor.GREEN + "NVus Prison has been enabled successfully!"); } @Override public void onDisable() { // Plugin shutdown logic - getLogger().info(ChatColor.RED + "NVusTags has been disabled successfully!"); + getLogger().info(ChatColor.RED + "NVus Prison has been disabled successfully!"); } }