Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 774 Bytes

README.md

File metadata and controls

33 lines (24 loc) · 774 Bytes

7z Gradle Plugin

A Gradle Plugin providing a task to extract 7z archives.

Getting Started

buildscript {
    repositories {
        maven {
            url "https://plugins.gradle.org/m2/"
        }
    }
    dependencies {
        classpath "gradle.plugin.eu.emundo:7z-gradle-plugin:1.0.5"
    }
}

apply plugin: "eu.emundo.sevenz"

task extractArchive(type: UnSevenZ) {
    sourceFile = file("path/to/archive.7z")
    outputDir = file("path/to/folder")
}

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

License

This project is licensed under the MIT License - see the LICENSE.md file for details