name.remal.gradle_plugins.toolkit.FileTreeUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of toolkit Show documentation
Show all versions of toolkit Show documentation
Remal Gradle plugins: toolkit: toolkit
package name.remal.gradle_plugins.toolkit;
import static lombok.AccessLevel.PRIVATE;
import static name.remal.gradle_plugins.toolkit.CrossCompileServices.loadCrossCompileService;
import java.io.File;
import java.util.Set;
import lombok.NoArgsConstructor;
import org.gradle.api.file.FileTree;
@NoArgsConstructor(access = PRIVATE)
public abstract class FileTreeUtils {
private static final FileTreeUtilsMethods METHODS = loadCrossCompileService(FileTreeUtilsMethods.class);
public static Set getFileTreeRoots(FileTree fileTree) {
return METHODS.getFileTreeRoots(fileTree);
}
}