Search Gradle plugins

org.cinchapi.jarsh

A gradle plugin that generates an executable shell script that embeds a runnable application jar with all of its dependencies.

http://cinchapi.com

Sources: https://github.com/cinchapi/jarsh

Version 1.0.0 (latest)

Created 08 July 2015.

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("org.cinchapi.jarsh") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.cinchapi.jarsh:jarsh:1.0.0")
  }
}

apply(plugin = "org.cinchapi.jarsh")

Using the plugins DSL:

plugins {
  id "org.cinchapi.jarsh" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.cinchapi.jarsh:jarsh:1.0.0"
  }
}

apply plugin: "org.cinchapi.jarsh"

Learn how to apply plugins to subprojects