pub.cellebi.make-executable
Owner: Mak Ho Cheung
Plugin for making your jar executable
https://github.com/cellebi/make-executable
Sources: https://github.com/cellebi/make-executable.git
Version 0.0.1 (latest)
Created 11 July 2019.
This is a gradle plugin for you to make your jar executable. It can produce a executable binary file from jar files
Add this plugin to your build using the plugins DSL:
plugins {
id("pub.cellebi.make-executable") version "0.0.1"
}
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("pub.cellebi.make-executable:pub.cellebi.make-executable.gradle.plugin:0.0.1") }
It can then be applied in the precompiled script plugin:plugins { id("pub.cellebi.make-executable") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("pub.cellebi.make-executable:pub.cellebi.make-executable.gradle.plugin:0.0.1") } } apply(plugin = "pub.cellebi.make-executable")
- Applying plugins to all subprojects .