*/
package org.pf4j.demo;
-import java.util.List;
-import java.util.Set;
-
import org.apache.commons.lang.StringUtils;
-
+import org.pf4j.DefaultPluginManager;
import org.pf4j.PluginManager;
import org.pf4j.PluginWrapper;
import org.pf4j.demo.api.Greeting;
-import org.pf4j.DefaultPluginManager;
-import org.pf4j.JarPluginManager;
+
+import java.util.List;
+import java.util.Set;
/**
* A boot class that start the demo.
// create the plugin manager
final PluginManager pluginManager = new DefaultPluginManager();
-// final PluginManager pluginManager = new JarPluginManager();
// load the plugins
pluginManager.loadPlugins();
*/
public class CompoundPluginRepository implements PluginRepository {
- private final PluginRepository[] repositories;
+ private List<PluginRepository> repositories = new ArrayList<>();
- public CompoundPluginRepository(PluginRepository... repositories) {
- this.repositories = repositories;
+ public CompoundPluginRepository add(PluginRepository repository) {
+ if (repository == null) {
+ throw new IllegalArgumentException("null not allowed");
+ }
+
+ repositories.add(repository);
+
+ return this;
}
@Override
+++ /dev/null
-/*
- * Copyright 2016 Decebal Suiu
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.pf4j;
-
-import org.pf4j.util.AndFileFilter;
-import org.pf4j.util.DirectoryFileFilter;
-import org.pf4j.util.HiddenFilter;
-import org.pf4j.util.JarFileFilter;
-import org.pf4j.util.NameFileFilter;
-import org.pf4j.util.NotFileFilter;
-import org.pf4j.util.OrFileFilter;
-
-import java.io.FileFilter;
-import java.nio.file.Path;
-
-/**
- * It's a {@link PluginManager} that loads plugin from a jar file.
- * Actually, a plugin is a fat jar, a jar which contains classes from all the libraries,
- * on which your project depends and, of course, the classes of current project.
- *
- * @author Decebal Suiu
- */
-public class JarPluginManager extends DefaultPluginManager {
-
- @Override
- protected PluginRepository createPluginRepository() {
- return new JarPluginRepository(getPluginsRoot(), isDevelopment());
- }
-
- class JarPluginRepository extends BasePluginRepository {
-
- public JarPluginRepository(Path pluginsRoot, boolean development) {
- super(pluginsRoot);
-
- if (development) {
- AndFileFilter pluginsFilter = new AndFileFilter(new DirectoryFileFilter());
- pluginsFilter.addFileFilter(new NotFileFilter(createHiddenPluginFilter(development)));
- setFilter(pluginsFilter);
- } else {
- setFilter(new JarFileFilter());
- }
- }
-
- protected FileFilter createHiddenPluginFilter(boolean development) {
- OrFileFilter hiddenPluginFilter = new OrFileFilter(new HiddenFilter());
-
- if (development) {
- hiddenPluginFilter.addFileFilter(new NameFileFilter("target"));
- }
-
- return hiddenPluginFilter;
- }
-
- }
-
-}
--- /dev/null
+/*
+ * Copyright 2016 Decebal Suiu
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.pf4j;
+
+import org.pf4j.util.JarFileFilter;
+
+import java.nio.file.Path;
+
+/**
+ * @author Decebal Suiu
+ */
+public class JarPluginRepository extends BasePluginRepository {
+
+ public JarPluginRepository(Path pluginsRoot) {
+ super(pluginsRoot, new JarFileFilter());
+ }
+
+}