Search Gradle plugins

io.github.p03w.machete

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 1.0.9

1.0.9

Created 30 April 2022.

A gradle plugin to optimize built jars through individual file optimizations and increased compression

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.p03w.machete") version "1.0.9"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.p03w:Machete:1.0.9")
      }
    }
    
    apply(plugin = "io.github.p03w.machete")
  • Applying plugins to all subprojects .