dev.dengchao.fc-custom-runtime-packer
Owner: XieEDeHeiShou
Zip bootstrap files together with your build into a function compute's zip
https://github.com/XieEDeHeiShou/fc-custom-runtime-packer
Sources: https://gitee.com/dengchao1183570/fc-custom-runtime-packer
Version 0.0.6 (latest)
0.0.6
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"