net.robyf.jarinjar
Owner: Roberto Fasciolo
A Gradle plugin for generating self-contained executable jar files.
https://github.com/robyf/gradle-jarinjar-plugin
Sources: https://github.com/robyf/gradle-jarinjar-plugin.git
Version 1.0.9 (latest)
Created 10 November 2018.
A Gradle plugin for generating self-contained executable jar files.<br><a href="https://github-com/robyf/gradle-jarinjar-plugin">https://github-com/robyf/gradle-jarinjar-plugin</a>
Add this plugin to your build using the plugins DSL:
plugins {
id("net.robyf.jarinjar") version "1.0.9"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("net.robyf.jarinjar:net.robyf.jarinjar.gradle.plugin:1.0.9") }
It can then be applied in the precompiled script plugin:plugins { id("net.robyf.jarinjar") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("net.robyf.jarinjar:net.robyf.jarinjar.gradle.plugin:1.0.9") } } apply(plugin = "net.robyf.jarinjar")
- Applying plugins to all subprojects .