io.freefair.compress.trees
Owner: Lars Grefer
Allows to open formats supported by commons-compress as FileTree
https://docs.freefair.io/gradle-plugins/8.10.2/reference/
Sources: https://github.com/freefair/gradle-plugins
Version 3.6.1
3.6.1
Created 20 May 2019.
Allows to open formats supported by commons-compress as FileTree
Using the plugins DSL:
plugins {
id("io.freefair.compress.trees") version "3.6.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.freefair.gradle:compress-plugin:3.6.1")
}
}
apply(plugin = "io.freefair.compress.trees")
Using the plugins DSL:
plugins {
id "io.freefair.compress.trees" version "3.6.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.freefair.gradle:compress-plugin:3.6.1"
}
}
apply plugin: "io.freefair.compress.trees"