com.cinchapi.jarsh
Owner:
Cinchapi, Inc.
A gradle plugin that generates an executable shell script that embeds a runnable application jar with all of its dependencies.
Version 1.1.5 (latest)
Created 14 May 2018.
A gradle plugin that generates an executable shell script that embeds a runnable application jar with all of its dependencies.
Using the plugins DSL:
plugins {
id("com.cinchapi.jarsh") version "1.1.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.cinchapi.jarsh:jarsh:1.1.5")
}
}
apply(plugin = "com.cinchapi.jarsh")
Using the plugins DSL:
plugins {
id "com.cinchapi.jarsh" version "1.1.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.cinchapi.jarsh:jarsh:1.1.5"
}
}
apply plugin: "com.cinchapi.jarsh"