Search Gradle plugins

Version 0.0.2

Created 18 April 2020.

Zip bootstrap files together with your build into a function compute's zip

Using the plugins DSL:

plugins {
  id("dev.dengchao.fc-custom-runtime-packer") version "0.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.dev.dengchao:plugin:0.0.2")
  }
}

apply(plugin = "dev.dengchao.fc-custom-runtime-packer")

Using the plugins DSL:

plugins {
  id "dev.dengchao.fc-custom-runtime-packer" version "0.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.dev.dengchao:plugin:0.0.2"
  }
}

apply plugin: "dev.dengchao.fc-custom-runtime-packer"

Learn how to apply plugins to subprojects