From 07aac3b2b47f5a5e11455cccb9429478dabcb805 Mon Sep 17 00:00:00 2001 From: BuildTools Date: Mon, 6 Apr 2020 00:12:59 -0500 Subject: [PATCH] Initial Commit of Directory Structure --- .idea/.gitignore | 2 + .idea/compiler.xml | 13 ++++ .idea/misc.xml | 14 ++++ .idea/vcs.xml | 6 ++ PlayrimeRewards+ (Rewritten).iml | 2 + pom.xml | 69 +++++++++++++++++++ .../playtimerewardsplus/Plugin.java | 4 ++ 7 files changed, 110 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/compiler.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/vcs.xml create mode 100644 PlayrimeRewards+ (Rewritten).iml create mode 100644 pom.xml create mode 100644 src/main/java/dev/astridlabs/playtimerewardsplus/Plugin.java diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..5c98b42 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,2 @@ +# Default ignored files +/workspace.xml \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..15c0885 --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..4b661a5 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,14 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/PlayrimeRewards+ (Rewritten).iml b/PlayrimeRewards+ (Rewritten).iml new file mode 100644 index 0000000..78b2cc5 --- /dev/null +++ b/PlayrimeRewards+ (Rewritten).iml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..c811125 --- /dev/null +++ b/pom.xml @@ -0,0 +1,69 @@ + + + 4.0.0 + + org.example + PlayrimeRewards+ (Rewritten) + 1.0-SNAPSHOT + + + + + spigot-repo + https://hub.spigotmc.org/nexus/content/repositories/snapshots/ + + + + jitpack.io + https://jitpack.io + + + + placeholderapi + https://repo.extendedclip.com/content/repositories/placeholderapi/ + + + + + + + me.clip + placeholderapi + 2.10.5 + provided + + + + org.spigotmc + spigot-api + 1.15.2-R0.1-SNAPSHOT + provided + + + + + + org.bukkit + bukkit + 1.15.2-R0.1-SNAPSHOT + provided + + + + net.luckperms + api + 5.0 + provided + + + + com.github.MilkBowl + VaultAPI + 1.7 + provided + + + + \ No newline at end of file diff --git a/src/main/java/dev/astridlabs/playtimerewardsplus/Plugin.java b/src/main/java/dev/astridlabs/playtimerewardsplus/Plugin.java new file mode 100644 index 0000000..4b113f1 --- /dev/null +++ b/src/main/java/dev/astridlabs/playtimerewardsplus/Plugin.java @@ -0,0 +1,4 @@ +package dev.astridlabs.playtimerewardsplus; + +public class Plugin { +}