Search Gradle plugins

Version 0.0.1-SNAPSHOT

Created 16 June 2019.

Plugin for making your jar executable

Using the plugins DSL:

plugins {
  id("pub.cellebi.make-executable") version "0.0.1-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("pub.cellebi:make-executable:0.0.1-SNAPSHOT")
  }
}

apply(plugin = "pub.cellebi.make-executable")

Using the plugins DSL:

plugins {
  id "pub.cellebi.make-executable" version "0.0.1-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "pub.cellebi:make-executable:0.0.1-SNAPSHOT"
  }
}

apply plugin: "pub.cellebi.make-executable"

Learn how to apply plugins to subprojects