Search Gradle plugins

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

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"

Learn how to apply plugins to subprojects