io.github.byteflys.compressor
Owner: Google2000
A compressor that can package files from anywhere into a jar
https://github.com/byteflys/plugin-file-compressor
Sources: https://github.com/byteflys/plugin-file-compressor.git
Version 3.0.4 (latest)
3.0.4
Created 25 May 2024.
A compressor that can package files from anywhere into a jar
Using the plugins DSL:
plugins {
id("io.github.byteflys.compressor") version "3.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.byteflys:compressor:3.0.4")
}
}
apply(plugin = "io.github.byteflys.compressor")
Using the plugins DSL:
plugins {
id "io.github.byteflys.compressor" version "3.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.byteflys:compressor:3.0.4"
}
}
apply plugin: "io.github.byteflys.compressor"