Search Gradle plugins

Version 1.2.5

1.2.5

Created 21 August 2023.

Gradle plugin to reduce the size of jar files

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.nerdthened.jartighten") version "1.2.5"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.NeRdTheNed.JarTighten:JarTighten-plugin:1.2.5")
      }
    }
    
    apply(plugin = "io.github.nerdthened.jartighten")
  • Applying plugins to all subprojects .