io.github.p03w.machete
Owner:
Silver Andromedae
A gradle plugin to optimize built jars through individual file optimizations and increased compression
https://github.com/SilverAndro/Machete
Sources: https://github.com/P03W/Machete/
Version 2.0.0
Created 30 December 2022.
A gradle plugin to optimize built jars through individual file optimizations and increased compression, works best on resource heavy jars
Using the plugins DSL:
plugins {
id("io.github.p03w.machete") version "2.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.p03w:Machete:2.0.0")
}
}
apply(plugin = "io.github.p03w.machete")
Using the plugins DSL:
plugins {
id "io.github.p03w.machete" version "2.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.p03w:Machete:2.0.0"
}
}
apply plugin: "io.github.p03w.machete"