mirror of
https://github.com/GeorgH93/Minepacks.git
synced 2024-11-14 10:45:23 +01:00
changing the package
This commit is contained in:
parent
fcb44a0a55
commit
563a260248
@ -1,7 +1,7 @@
|
||||
name: MinePacks
|
||||
author: GeorgH93
|
||||
website: http://dev.bukkit.org/bukkit-plugins/minepacks/
|
||||
main: at.pcgamingfreaks.georgh.MinePacks.MinePacks
|
||||
main: at.pcgamingfreaks.MinePacks.MinePacks
|
||||
description: Minepacks is a backpack plugin with different backpack sizes, multilanguage and MySQL storage support. It is a simple plugin, but still has a lot of functions.
|
||||
version: ${version}
|
||||
commands:
|
||||
|
@ -15,7 +15,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package at.pcgamingfreaks.georgh.MinePacks;
|
||||
package at.pcgamingfreaks.MinePacks;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
@ -15,7 +15,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package at.pcgamingfreaks.georgh.MinePacks.Database;
|
||||
package at.pcgamingfreaks.MinePacks.Database;
|
||||
|
||||
import at.pcgamingfreaks.Bukkit.Configuration;
|
||||
|
@ -15,16 +15,15 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package at.pcgamingfreaks.georgh.MinePacks.Database;
|
||||
package at.pcgamingfreaks.MinePacks.Database;
|
||||
|
||||
import java.util.HashMap;
|
||||
|
||||
import org.bukkit.OfflinePlayer;
|
||||
import org.bukkit.entity.Player;
|
||||
|
||||
import at.pcgamingfreaks.georgh.MinePacks.Backpack;
|
||||
import at.pcgamingfreaks.georgh.MinePacks.MinePacks;
|
||||
import at.pcgamingfreaks.georgh.MinePacks.Database.ItemStackSerializer.InventorySerializer;
|
||||
import at.pcgamingfreaks.MinePacks.Backpack;
|
||||
import at.pcgamingfreaks.MinePacks.MinePacks;
|
||||
|
||||
public class Database
|
||||
{
|
@ -15,7 +15,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package at.pcgamingfreaks.georgh.MinePacks.Database;
|
||||
package at.pcgamingfreaks.MinePacks.Database;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.FileInputStream;
|
||||
@ -28,8 +28,8 @@
|
||||
import at.pcgamingfreaks.UUIDConverter;
|
||||
import org.bukkit.OfflinePlayer;
|
||||
|
||||
import at.pcgamingfreaks.georgh.MinePacks.Backpack;
|
||||
import at.pcgamingfreaks.georgh.MinePacks.MinePacks;
|
||||
import at.pcgamingfreaks.MinePacks.Backpack;
|
||||
import at.pcgamingfreaks.MinePacks.MinePacks;
|
||||
|
||||
public class Files extends Database
|
||||
{
|
@ -1,4 +1,4 @@
|
||||
package at.pcgamingfreaks.georgh.MinePacks.Database.ItemStackSerializer;
|
||||
package at.pcgamingfreaks.MinePacks.Database;
|
||||
|
||||
import at.pcgamingfreaks.Bukkit.ItemStackSerializer.BukkitItemStackSerializer;
|
||||
import at.pcgamingfreaks.Bukkit.ItemStackSerializer.ItemStackSerializer;
|
@ -15,7 +15,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package at.pcgamingfreaks.georgh.MinePacks.Database;
|
||||
package at.pcgamingfreaks.MinePacks.Database;
|
||||
|
||||
import org.bukkit.plugin.java.JavaPlugin;
|
||||
|
@ -15,7 +15,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package at.pcgamingfreaks.georgh.MinePacks.Database;
|
||||
package at.pcgamingfreaks.MinePacks.Database;
|
||||
|
||||
import java.sql.Connection;
|
||||
import java.sql.DriverManager;
|
||||
@ -24,11 +24,11 @@
|
||||
import java.sql.SQLException;
|
||||
import java.sql.Statement;
|
||||
|
||||
import at.pcgamingfreaks.georgh.MinePacks.Backpack;
|
||||
import at.pcgamingfreaks.MinePacks.Backpack;
|
||||
import org.bukkit.OfflinePlayer;
|
||||
import org.bukkit.entity.Player;
|
||||
|
||||
import at.pcgamingfreaks.georgh.MinePacks.MinePacks;
|
||||
import at.pcgamingfreaks.MinePacks.MinePacks;
|
||||
import org.bukkit.inventory.ItemStack;
|
||||
|
||||
public class MySQL extends SQL
|
@ -15,7 +15,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package at.pcgamingfreaks.georgh.MinePacks.Database;
|
||||
package at.pcgamingfreaks.MinePacks.Database;
|
||||
|
||||
import java.sql.*;
|
||||
import java.util.ArrayList;
|
||||
@ -26,8 +26,8 @@
|
||||
import org.bukkit.entity.Player;
|
||||
import org.bukkit.inventory.ItemStack;
|
||||
|
||||
import at.pcgamingfreaks.georgh.MinePacks.Backpack;
|
||||
import at.pcgamingfreaks.georgh.MinePacks.MinePacks;
|
||||
import at.pcgamingfreaks.MinePacks.Backpack;
|
||||
import at.pcgamingfreaks.MinePacks.MinePacks;
|
||||
|
||||
public abstract class SQL extends Database
|
||||
{
|
@ -15,7 +15,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package at.pcgamingfreaks.georgh.MinePacks.Database;
|
||||
package at.pcgamingfreaks.MinePacks.Database;
|
||||
|
||||
import java.io.File;
|
||||
import java.sql.Connection;
|
||||
@ -24,7 +24,7 @@
|
||||
import java.sql.SQLException;
|
||||
import java.sql.Statement;
|
||||
|
||||
import at.pcgamingfreaks.georgh.MinePacks.MinePacks;
|
||||
import at.pcgamingfreaks.MinePacks.MinePacks;
|
||||
|
||||
public class SQLite extends SQL
|
||||
{
|
@ -15,9 +15,9 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package at.pcgamingfreaks.georgh.MinePacks;
|
||||
package at.pcgamingfreaks.MinePacks;
|
||||
|
||||
import at.pcgamingfreaks.georgh.MinePacks.Database.Database;
|
||||
import at.pcgamingfreaks.MinePacks.Database.Database;
|
||||
import org.bukkit.entity.Player;
|
||||
import org.bukkit.event.EventHandler;
|
||||
import org.bukkit.event.Listener;
|
@ -15,7 +15,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package at.pcgamingfreaks.georgh.MinePacks;
|
||||
package at.pcgamingfreaks.MinePacks;
|
||||
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.entity.Entity;
|
@ -15,7 +15,7 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package at.pcgamingfreaks.georgh.MinePacks;
|
||||
package at.pcgamingfreaks.MinePacks;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.logging.Logger;
|
||||
@ -28,7 +28,7 @@
|
||||
import org.bukkit.plugin.ServicePriority;
|
||||
import org.bukkit.plugin.java.JavaPlugin;
|
||||
|
||||
import at.pcgamingfreaks.georgh.MinePacks.Database.*;
|
||||
import at.pcgamingfreaks.MinePacks.Database.*;
|
||||
|
||||
public class MinePacks extends JavaPlugin
|
||||
{
|
@ -15,11 +15,11 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package at.pcgamingfreaks.georgh.MinePacks;
|
||||
package at.pcgamingfreaks.MinePacks;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
import at.pcgamingfreaks.georgh.MinePacks.Database.Database;
|
||||
import at.pcgamingfreaks.MinePacks.Database.Database;
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.ChatColor;
|
||||
import org.bukkit.OfflinePlayer;
|
Loading…
Reference in New Issue
Block a user