Search Gradle plugins

Version 1.0 (latest)

Created 13 June 2023.

Creates an executable binary with all the dependencies

Using the plugins DSL:

plugins {
  id("io.github.cdsap.fatbinary") version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.cdsap:FatBinary:1.0")
  }
}

apply(plugin = "io.github.cdsap.fatbinary")

Using the plugins DSL:

plugins {
  id "io.github.cdsap.fatbinary" version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.cdsap:FatBinary:1.0"
  }
}

apply plugin: "io.github.cdsap.fatbinary"

Learn how to apply plugins to subprojects