commit 1ed4af6efed6993cc1c0f09e7977e247192342c9 Author: officereso Date: Fri Sep 27 07:02:27 2019 -0500 first commit diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..2c59952 --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..15a15b2 --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,4 @@ + + + + \ 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/pom.xml b/pom.xml new file mode 100644 index 0000000..0545403 --- /dev/null +++ b/pom.xml @@ -0,0 +1,26 @@ + + + 4.0.0 + + io.github.officereso + pvp + 1.0-SNAPSHOT + + + spigotmc-repo + https://hub.spigotmc.org/nexus/content/repositories/snapshots/ + + + + + + org.spigotmc + spigot-api + 1.14.4-R0.1-SNAPSHOT + provided + + + + \ No newline at end of file diff --git a/pvp.iml b/pvp.iml new file mode 100644 index 0000000..78b2cc5 --- /dev/null +++ b/pvp.iml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/src/main/java/io/github/officereso/pvp.java b/src/main/java/io/github/officereso/pvp.java new file mode 100644 index 0000000..441261d --- /dev/null +++ b/src/main/java/io/github/officereso/pvp.java @@ -0,0 +1,16 @@ +package io.github.officereso; + + +import org.bukkit.plugin.java.JavaPlugin; + +public class pvp extends JavaPlugin { + + @Override + public void onEnable() { + getLogger().info("onEnable is called!"); + } + @Override + public void onDisable() { + getLogger().info("onDisable is called!"); + } +} diff --git a/src/main/resources/plugin.yml b/src/main/resources/plugin.yml new file mode 100644 index 0000000..1d03e25 --- /dev/null +++ b/src/main/resources/plugin.yml @@ -0,0 +1,3 @@ +name: pvp +version: 1.0 +main: io.github.officereso.pvp \ No newline at end of file