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.6

Created 27 April 2022.

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.p03w:Machete:1.0.6")
  }
}

apply(plugin = "io.github.p03w.machete")

Using the plugins DSL:

plugins {
  id "io.github.p03w.machete" version "1.0.6"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.p03w:Machete:1.0.6"
  }
}

apply plugin: "io.github.p03w.machete"

Learn how to apply plugins to subprojects