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)
Created 25 May 2024.
A compressor that can package files from anywhere into a jar
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.byteflys.compressor") version "3.0.4"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("io.github.byteflys.compressor:io.github.byteflys.compressor.gradle.plugin:3.0.4") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.byteflys.compressor") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.byteflys.compressor:io.github.byteflys.compressor.gradle.plugin:3.0.4") } } apply(plugin = "io.github.byteflys.compressor")
- Applying plugins to all subprojects .