From ac2a9a619fb1943b217bf7a7c352b46fdb07d63d Mon Sep 17 00:00:00 2001 From: Telesphoreo Date: Sun, 25 Oct 2020 22:55:49 -0500 Subject: [PATCH] Initial commit --- .gitignore | 12 +++++++ pom.xml | 43 +++++++++++++++++++++++++ src/main/java/me/totalfreedom/plex/Plex | 22 +++++++++++++ src/main/resources/plugin.yml | 4 +++ 4 files changed, 81 insertions(+) create mode 100644 .gitignore create mode 100644 pom.xml create mode 100644 src/main/java/me/totalfreedom/plex/Plex create mode 100644 src/main/resources/plugin.yml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5e1172f --- /dev/null +++ b/.gitignore @@ -0,0 +1,12 @@ +/.idea/* +*.iml +/target/* + +# OS +.DS_Store +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db + diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..2486446 --- /dev/null +++ b/pom.xml @@ -0,0 +1,43 @@ + + + 4.0.0 + + me.totalfreedom + Plex + 1.0.0 + jar + + + UTF-8 + ${project.name} + ${maven.build.timestamp} + MM/dd/yyyy HH:mm + + + + + spigot-repo + https://hub.spigotmc.org/nexus/content/repositories/snapshots/ + + + + + + org.spigotmc + spigot-api + 1.16.3-R0.1-SNAPSHOT + provided + + + + + + + src/main/resources + true + + + + \ No newline at end of file diff --git a/src/main/java/me/totalfreedom/plex/Plex b/src/main/java/me/totalfreedom/plex/Plex new file mode 100644 index 0000000..083170a --- /dev/null +++ b/src/main/java/me/totalfreedom/plex/Plex @@ -0,0 +1,22 @@ +package me.totalfreedom.plex; + +import org.bukkit.plugin.java.JavaPlugin; + +public class Plex extends JavaPlugin +{ + + @Override + public void onLoad() + { + } + + @Override + public void onEnable() + { + } + + @Override + public void onDisable() + { + } +} \ No newline at end of file diff --git a/src/main/resources/plugin.yml b/src/main/resources/plugin.yml new file mode 100644 index 0000000..01db9cd --- /dev/null +++ b/src/main/resources/plugin.yml @@ -0,0 +1,4 @@ +name: ${project.name} +version: ${project.version} +author: Telesphoreo +main: me.totalfreedom.plex.Plex