// Load the cache file path
this.cachePath = this.configuration.getConfiguration(PluginManager.class, "cache.file");
// Register loader
this.pluginLoader.add(new InternalClasspathLoader(this));
this.pluginLoader.add(new FileLoader(this));
this.pluginLoader.add(new HTTPLoader(this));
loadAdditionalPlugins();
applyConfig();
}