2016-10-31 04:12:40 +00:00
|
|
|
package alisolarflare;
|
|
|
|
|
|
|
|
import java.util.logging.Logger;
|
|
|
|
|
|
|
|
import org.bukkit.plugin.PluginDescriptionFile;
|
|
|
|
//import alisolarflare.links.AliLinkSubPlug;
|
|
|
|
import org.bukkit.plugin.java.JavaPlugin;
|
|
|
|
|
2016-11-12 14:52:08 +00:00
|
|
|
import alisolarflare.components.alilinks.AliLinkComponent;
|
2016-11-21 18:32:46 +00:00
|
|
|
import alisolarflare.components.bankchest.BankChestComponent;
|
2016-11-12 14:52:08 +00:00
|
|
|
import alisolarflare.components.creativeboundaries.CreativeBoundariesComponent;
|
|
|
|
import alisolarflare.components.easyuhc.EasyUHCComponent;
|
|
|
|
import alisolarflare.components.flairdoor.FlairDoorComponent;
|
2016-11-17 23:55:29 +00:00
|
|
|
import alisolarflare.components.gpowers.GPowerComponent;
|
|
|
|
import alisolarflare.components.insurance.InsuranceComponent;
|
2016-11-12 14:52:08 +00:00
|
|
|
import alisolarflare.components.magic.MagicComponent;
|
2016-11-17 23:55:29 +00:00
|
|
|
import alisolarflare.components.metrics.MetricsComponent;
|
|
|
|
import alisolarflare.components.minigames.MinigameComponent;
|
2016-10-31 04:12:40 +00:00
|
|
|
|
|
|
|
public class AliPresents extends JavaPlugin{
|
|
|
|
public void onEnable(){
|
|
|
|
PluginDescriptionFile pdfFile = getDescription();
|
|
|
|
|
2016-11-03 21:32:08 +00:00
|
|
|
Logger logger = getLogger();
|
2016-10-31 04:12:40 +00:00
|
|
|
logger.info(pdfFile.getName() + " has been started (V." + pdfFile.getVersion()+ ").");
|
2016-11-05 19:42:41 +00:00
|
|
|
|
2016-11-06 21:44:56 +00:00
|
|
|
|
2016-11-12 14:52:08 +00:00
|
|
|
new AliLinkComponent().register(this);
|
2016-11-21 18:32:46 +00:00
|
|
|
new BankChestComponent().register(this);
|
2016-11-17 23:55:29 +00:00
|
|
|
new CreativeBoundariesComponent().register(this);
|
2016-11-12 14:52:08 +00:00
|
|
|
new EasyUHCComponent().register(this);
|
2016-11-17 23:55:29 +00:00
|
|
|
new FlairDoorComponent().register(this);
|
|
|
|
new GPowerComponent().register(this);
|
|
|
|
new InsuranceComponent().register(this);
|
2016-11-12 14:52:08 +00:00
|
|
|
new MagicComponent().register(this);
|
2016-11-17 23:55:29 +00:00
|
|
|
new MetricsComponent().register(this);
|
|
|
|
new MinigameComponent().register(this);
|
2016-11-03 21:32:08 +00:00
|
|
|
|
2016-11-06 21:44:56 +00:00
|
|
|
|
2016-11-03 21:32:08 +00:00
|
|
|
logger.info(pdfFile.getName() + " has fully registered (V." + pdfFile.getVersion()+ ").");
|
|
|
|
|
|
|
|
|
2016-10-31 04:12:40 +00:00
|
|
|
}
|
|
|
|
}
|