io.freefair.gradle.plugins.compress.CompressPlugin 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;
import org.gradle.api.Plugin;
import org.gradle.api.Project;
/**
* @author Lars Grefer
*/
public class CompressPlugin implements Plugin {
@Override
public void apply(Project project) {
project.getPlugins().apply(CompressTreePlugin.class);
project.getPlugins().apply(ArPlugin.class);
project.getPlugins().apply(CpioPlugin.class);
project.getPlugins().apply(SevenZipPlugin.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy