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 2.0.1 (latest)

Created 02 April 2023.

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.1"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects