diff --git a/.gitignore b/.gitignore index 6143e53..076a451 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,4 @@ # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml hs_err_pid* +/target/ \ No newline at end of file diff --git a/ItemCase/pom.xml b/ItemCase/pom.xml deleted file mode 100644 index 6e308e3..0000000 --- a/ItemCase/pom.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - 4.0.0 - - com.gmail.bleedobsidian - ItemCase - ItemCase - ItemCase is a Bukkit plugin allowing you to showcase items on slabs, that can also be used as shops. - 2.0.0 - pom - - - - UTF-8 - - - - - spigot-repo - https://hub.spigotmc.org/nexus/content/repositories/snapshots/ - - - - - - org.spigotmc - spigot - 1.12-R0.1-SNAPSHOT - provided - - - \ No newline at end of file diff --git a/pom.xml b/pom.xml index 404d8f3..b554f9f 100644 --- a/pom.xml +++ b/pom.xml @@ -1,13 +1,93 @@ 4.0.0 + com.gmail.bleedobsidian - ItemCases + ItemCase + ItemCase + ItemCase is a Bukkit plugin allowing you to showcase items on slabs, that can also be used as shops. 2.0.0 jar + UTF-8 1.8 1.8 + + + + org.spigotmc + spigot + 1.12.1-R0.1-SNAPSHOT + provided + + + + + clean + ${basedir}/src/main/java + + + + . + true + ${basedir}/src/main/resources + + *.yml + + + + ./languages/ + true + ${basedir}/src/main/resources/languages/ + + *.yml + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.1 + + + + org.apache.maven.plugins + maven-jar-plugin + 2.4 + + + false + + + + + + org.apache.maven.plugins + maven-shade-plugin + + + package + + shade + + + + + ${artifactId} + + + org.bukkit + net.milkbowl.vault + junit + com.sk89q.worldguard + + + + + + \ No newline at end of file diff --git a/src/main/java/com/gmail/bleedobsidian/itemcase/ItemCase.java b/src/main/java/com/gmail/bleedobsidian/itemcase/ItemCase.java new file mode 100644 index 0000000..328cf02 --- /dev/null +++ b/src/main/java/com/gmail/bleedobsidian/itemcase/ItemCase.java @@ -0,0 +1,28 @@ +/* + * ItemCase is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +package com.gmail.bleedobsidian.itemcase; + +import org.bukkit.plugin.java.JavaPlugin; + +/** + * ItemCase is a Bukkit plugin allowing you to showcase items on slabs, that can also be used as + * shops. + * + * @author Jesse Prescott (BleedObsidian) + */ +public class ItemCase extends JavaPlugin { + +} diff --git a/src/main/resources/plugin.yml b/src/main/resources/plugin.yml new file mode 100644 index 0000000..2256885 --- /dev/null +++ b/src/main/resources/plugin.yml @@ -0,0 +1,10 @@ +name: ItemCase +version: 2.0.0 +description: ItemCase is a Bukkit plugin allowing you to showcase items on slabs, that can also be used as shops. +load: POSTWORLD +author: BleedObsidian +website: http://dev.bukkit.org/bukkit-plugins/itemcase/ +database: false +prefix: ItemCase + +main: com.gmail.bleedobsidian.itemcase.ItemCase \ No newline at end of file