Skip to content

lukaslisowski/7z-gradle-plugin

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.2"
    }
}

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

About

Gradle plugin providing 7z tasks.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Groovy 100.0%