commit e708519b578622bb65070502358785a643a1c6dd Author: Wani4ka Date: Wed Jan 30 01:04:30 2019 +0300 Initial commit. diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4bfa550 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +.idea/ +*.iml +target/ diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..f8b08ee --- /dev/null +++ b/pom.xml @@ -0,0 +1,25 @@ + + + 4.0.0 + + ru.prisonlife + PrisonAPI + 0.0.1 + + + + spigot-repo + https://hub.spigotmc.org/nexus/content/repositories/snapshots/ + + + + + org.spigotmc + spigot-api + 1.12-R0.1-SNAPSHOT + provided + + + \ No newline at end of file diff --git a/src/main/java/ru/prisonlife/PrisonAPI/PrisonAPI.java b/src/main/java/ru/prisonlife/PrisonAPI/PrisonAPI.java new file mode 100644 index 0000000..3d5e4e2 --- /dev/null +++ b/src/main/java/ru/prisonlife/PrisonAPI/PrisonAPI.java @@ -0,0 +1,10 @@ +package ru.prisonlife.PrisonAPI; + +import org.bukkit.plugin.java.JavaPlugin; + +public class PrisonAPI extends JavaPlugin { + @Override + public void onEnable() { + getLogger().info("Enabled"); + } +} diff --git a/src/main/resources/plugin.yml b/src/main/resources/plugin.yml new file mode 100644 index 0000000..78132e1 --- /dev/null +++ b/src/main/resources/plugin.yml @@ -0,0 +1,4 @@ +name: PrisonAPI +version: 0.0.1 +authors: [Overlord_S, Prot_CN, Wani4ka] +main: ru.prisonlife.PrisonAPI.PrisonAPI \ No newline at end of file