A Gradle Plugin providing a task to extract 7z archives.
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.eu.emundo:7z-gradle-plugin:1.0.2"
}
}
apply plugin: "eu.emundo.sevenz"
task extractArchive(type: UnSevenZ) {
sourceFile = file("path/to/archive.7z")
outputDir = file("path/to/folder")
}
We use SemVer for versioning. For the versions available, see the tags on this repository.
This project is licensed under the MIT License - see the LICENSE.md file for details