name.remal.gradle_plugins.merge_resources.CustomTextResourceMergerFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of merge-resources Show documentation
Show all versions of merge-resources Show documentation
Remal Gradle plugins: merge-resources
The newest version!
package name.remal.gradle_plugins.merge_resources;
import java.io.File;
import java.util.Collection;
import org.gradle.api.file.RelativePath;
@FunctionalInterface
public interface CustomTextResourceMergerFunction {
String merge(RelativePath relativePath, Collection files) throws Throwable;
}