Search Gradle plugins

io.pivotal.labs.exedist

A Gradle plugin which makes distribution zips runnable, as a sort of alternative to an uberjar. A London Beach production :guardsman::palm_tree:.

https://github.com/pivotal/executable-dist-plugin

Sources: https://github.com/pivotal/executable-dist-plugin

Version 1.0.0 (latest)

Created 17 April 2015.

A Gradle plugin which makes distribution zips runnable, as a sort of alternative to an uberjar. A London Beach production :guardsman::palm_tree:.

Using the plugins DSL:

plugins {
  id("io.pivotal.labs.exedist") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.io.pivotal.labs:executable-dist-plugin:1.0.0")
  }
}

apply(plugin = "io.pivotal.labs.exedist")

Using the plugins DSL:

plugins {
  id "io.pivotal.labs.exedist" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.io.pivotal.labs:executable-dist-plugin:1.0.0"
  }
}

apply plugin: "io.pivotal.labs.exedist"

Learn how to apply plugins to subprojects