org.bukkit.plugin.InvalidPluginException Java Examples

The following examples show how to use org.bukkit.plugin.InvalidPluginException. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: RuntimePluginLoader.java    From PGM with GNU Affero General Public License v3.0 4 votes vote down vote up
@Override
public Plugin loadPlugin(File file) throws UnknownDependencyException, InvalidPluginException {
  return loader.loadPlugin(file);
}
 
Example #2
Source File: LoggedPluginManager.java    From VoxelGamesLibv2 with MIT License 4 votes vote down vote up
@Override
public Plugin loadPlugin(File file)
        throws InvalidPluginException, InvalidDescriptionException, UnknownDependencyException {
    return delegate.loadPlugin(file);
}
 
Example #3
Source File: LoggedPluginManager.java    From NovaGuilds with GNU General Public License v3.0 4 votes vote down vote up
@Override
public Plugin loadPlugin(File file) throws InvalidPluginException, InvalidDescriptionException, UnknownDependencyException {
	return delegate.loadPlugin(file);
}
 
Example #4
Source File: Main.java    From Lukkit with MIT License 4 votes vote down vote up
@Override
public void onLoad() {
    // Set the logger and instance
    logger = this.getLogger();
    instance = this;

    // Create the data folder directory if it doesn't exist
    if (!this.getDataFolder().exists()) //noinspection ResultOfMethodCallIgnored
        this.getDataFolder().mkdir();

    // Check the config
    this.checkConfig();

    // Initialize the Lua env (sets up globals)
    LuaEnvironment.init(this.getConfig().getBoolean("lua-debug"));

    // Save the plugin manager for future use
    this.pluginManager = this.getServer().getPluginManager();
    // Register our custom plugin loader on the plugin manager
    this.pluginManager.registerInterface(LukkitPluginLoader.class);

    this.getLogger().info("Loading Lukkit plugins...");

    // Get the files in the plugins directory
    File[] plugins = this.getFile().getParentFile().listFiles();

    if (plugins != null) {
        // Set the start time of loading
        long startTime = System.currentTimeMillis();

        for (File file : plugins) {
            // "break" if the file isn't for Lukkit
            if (isLukkitPluginFile(file.getName())) {
                // Load the plugin using LukkitPluginLoader
                try {
                    this.pluginManager.loadPlugin(file);
                } catch (InvalidPluginException | InvalidDescriptionException e) {
                    LuaEnvironment.addError(e);
                    e.printStackTrace();
                }
            }
        }

        // Get the total time to load plugins and save to loadTime member
        loadTime = System.currentTimeMillis() - startTime;
    }

    for (Plugin plugin : this.pluginManager.getPlugins()) {
        if (plugin instanceof LukkitPlugin) {
            this.pluginLoader = (LukkitPluginLoader) plugin.getPluginLoader();
            break;
        }
    }
}