private static final Logger log = LoggerFactory.getLogger(AbstractPluginManager.class);
+ public static final String PLUGINS_DIR_PROPERTY_NAME = "pf4j.pluginsDir";
+
private Path pluginsRoot;
protected ExtensionFinder extensionFinder;
/**
* Add the possibility to override the plugins root.
- * If a {@code pf4j.pluginsDir} system property is defined than this method returns that root.
+ * If a {@link #PLUGINS_DIR_PROPERTY_NAME} system property is defined than this method returns that root.
* If {@link #getRuntimeMode()} returns {@link RuntimeMode#DEVELOPMENT} than {@code ../plugins}
* is returned else this method returns {@code plugins}.
*
* @return the plugins root
*/
protected Path createPluginsRoot() {
- String pluginsDir = System.getProperty("pf4j.pluginsDir");
+ String pluginsDir = System.getProperty(PLUGINS_DIR_PROPERTY_NAME);
if (pluginsDir == null) {
if (isDevelopment()) {
pluginsDir = "../plugins";
private static final Logger log = LoggerFactory.getLogger(DefaultPluginManager.class);
+ public static final String PLUGINS_DIR_CONFIG_PROPERTY_NAME = "pf4j.pluginsConfigDir";
+
protected PluginClasspath pluginClasspath;
public DefaultPluginManager() {
@Override
protected PluginStatusProvider createPluginStatusProvider() {
- String configDir = System.getProperty("pf4j.pluginsConfigDir");
+ String configDir = System.getProperty(PLUGINS_DIR_CONFIG_PROPERTY_NAME);
Path configPath = configDir != null ? Paths.get(configDir) : getPluginsRoot();
return new DefaultPluginStatusProvider(configPath);
}
}
/**
- * By default if {@link DefaultPluginManager#isDevelopment()} returns true
- * than a {@link DevelopmentPluginClasspath} is returned
- * else this method returns {@link DefaultPluginClasspath}.
+ * By default if {@link #isDevelopment()} returns {@code true} than a {@link DevelopmentPluginClasspath}
+ * is returned, else this method returns {@link DefaultPluginClasspath}.
*/
protected PluginClasspath createPluginClasspath() {
return isDevelopment() ? new DevelopmentPluginClasspath() : new DefaultPluginClasspath();