io.freefair.gradle.plugins.compress.CpioPlugin 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 io.freefair.gradle.plugins.compress.tasks.Cpio;
import org.gradle.api.Plugin;
import org.gradle.api.Project;
/**
* @author Lars Grefer
*/
public class CpioPlugin implements Plugin {
@Override
public void apply(Project project) {
project.getExtensions().getExtraProperties().set(
Cpio.class.getSimpleName(),
Cpio.class
);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy