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)
0.0.1
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
Using the plugins DSL:
plugins {
id("pub.cellebi.make-executable") version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("pub.cellebi:make-executable:0.0.1")
}
}
apply(plugin = "pub.cellebi.make-executable")
Using the plugins DSL:
plugins {
id "pub.cellebi.make-executable" version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "pub.cellebi:make-executable:0.0.1"
}
}
apply plugin: "pub.cellebi.make-executable"