Search Gradle plugins

Version 0.0.6 (latest)

Created 08 June 2020.

Compress bootstrap files together with your boot.jar into a function compute's zip

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("dev.dengchao:fc-custom-runtime-packer:0.0.6")
  }
}

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "dev.dengchao:fc-custom-runtime-packer:0.0.6"
  }
}

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

Learn how to apply plugins to subprojects