io.freefair.gradle.plugins.compress.tree.ArchiveInputStreamProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of compress-plugin Show documentation
Show all versions of compress-plugin Show documentation
Collection of Apache Commons Compress related Gradle plugins
package io.freefair.gradle.plugins.compress.tree;
import org.apache.commons.compress.archivers.ArchiveException;
import org.apache.commons.compress.archivers.ArchiveInputStream;
import java.io.File;
import java.io.IOException;
@FunctionalInterface
public interface ArchiveInputStreamProvider {
IS openFile(File file) throws IOException, ArchiveException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy