From afbec4993557a717222bf4d70c9cba929cc3e92c Mon Sep 17 00:00:00 2001 From: yaohunya <31456652@qq.com> Date: Wed, 31 Jul 2024 00:50:44 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B5=8B=E8=AF=95=E7=89=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pom.xml | 30 +++++++++++++++++++ .../java/com/yaohun/questsystem/Main.java | 19 ++++++++++++ src/main/resources/plugin.yml | 5 ++++ 3 files changed, 54 insertions(+) create mode 100644 pom.xml create mode 100644 src/main/java/com/yaohun/questsystem/Main.java create mode 100644 src/main/resources/plugin.yml diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..2c1f130 --- /dev/null +++ b/pom.xml @@ -0,0 +1,30 @@ + + + 4.0.0 + + org.example + QuestSystem + 1.0-SNAPSHOT + + + 17 + 17 + + + + + public + https://repo.aurora-pixels.com/repository/public/ + + + + + + org.spigotmc + spigot + 1.18.2 + + + \ No newline at end of file diff --git a/src/main/java/com/yaohun/questsystem/Main.java b/src/main/java/com/yaohun/questsystem/Main.java new file mode 100644 index 0000000..ef44872 --- /dev/null +++ b/src/main/java/com/yaohun/questsystem/Main.java @@ -0,0 +1,19 @@ +package com.yaohun.questsystem; + +import org.bukkit.plugin.java.JavaPlugin; + +public class Main extends JavaPlugin { + + public static Main plugin; + + @Override + public void onEnable() { + plugin = this; + + } + + @Override + public void onDisable() { + super.onDisable(); + } +} diff --git a/src/main/resources/plugin.yml b/src/main/resources/plugin.yml new file mode 100644 index 0000000..182e5b7 --- /dev/null +++ b/src/main/resources/plugin.yml @@ -0,0 +1,5 @@ +name: QuestSystem +main: com.yaohun.questsystem.Main +version: 1.0 +commands: + quest: \ No newline at end of file