Package com.ljarocki.parallelzip
Class ParallelZipPlugin
java.lang.Object
com.ljarocki.parallelzip.ParallelZipPlugin
- All Implemented Interfaces:
org.gradle.api.Plugin<org.gradle.api.Project>
public class ParallelZipPlugin
extends Object
implements org.gradle.api.Plugin<org.gradle.api.Project>
Applying this plugin makes the
ParallelZip task type available to the build
script. It intentionally registers no tasks of its own; declare your own:
plugins { id 'com.ljarocki.parallel-zip' }
tasks.register('dist', com.ljarocki.parallelzip.ParallelZip) {
from = layout.buildDirectory.dir('staging')
archiveFile = layout.buildDirectory.file('dist.zip')
}
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
ParallelZipPlugin
public ParallelZipPlugin()
-
-
Method Details
-
apply
public void apply(org.gradle.api.Project project) - Specified by:
applyin interfaceorg.gradle.api.Plugin<org.gradle.api.Project>
-