io.github.nerdthened.jartighten
Owner: Ned Loynd
Gradle plugin to reduce the size of jar files
https://github.com/NeRdTheNed/JarTighten
Sources: https://github.com/NeRdTheNed/JarTighten
Version 1.2.12 (latest)
1.2.12
Created 19 November 2023.
Gradle plugin to reduce the size of jar files
Using the plugins DSL:
plugins {
id("io.github.nerdthened.jartighten") version "1.2.12"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.NeRdTheNed.JarTighten:JarTighten-plugin:1.2.12")
}
}
apply(plugin = "io.github.nerdthened.jartighten")
Using the plugins DSL:
plugins {
id "io.github.nerdthened.jartighten" version "1.2.12"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.NeRdTheNed.JarTighten:JarTighten-plugin:1.2.12"
}
}
apply plugin: "io.github.nerdthened.jartighten"