![JAR search and dependency download from the Maven repository](/logo.png)
org.meridor.stecker.dev.DevResourcesScanner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stecker-plugin-loader Show documentation
Show all versions of stecker-plugin-loader Show documentation
This is a plugin loading library. Its main purpose is to load extension point implementations from
provided plugins.
The newest version!
package org.meridor.stecker.dev;
import org.meridor.stecker.PluginException;
import org.meridor.stecker.impl.PluginUtils;
import org.meridor.stecker.interfaces.ResourcesScanner;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.Collections;
import java.util.List;
public class DevResourcesScanner implements ResourcesScanner {
private final String[] patterns;
public DevResourcesScanner(String[] patterns) {
this.patterns = patterns;
}
@Override
public List scan(Path pluginDirectory) throws PluginException {
Path resourcesPath = pluginDirectory.resolve("src").resolve("main").resolve("resources");
if (Files.exists(resourcesPath) && Files.isDirectory(resourcesPath)) {
try {
return PluginUtils.getMatchingFiles(resourcesPath, patterns);
} catch (IOException e) {
throw new PluginException(e);
}
}
return Collections.emptyList();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy