io.suprgames.serverless-kdsl-plugin
Owner: Diego Marzo
Plugin that will generate the Serverless Framework file entries for annotated functions with Serverless K-DSL
Sources: https://github.com/SuprGames/serverless-kdsl-gradle-plugin
Version 0.0.1-SNAPSHOT
Created 19 August 2020.
Plugin that will generate the Serverless Framework file entries for annotated functions with Serverless K-DSL
Add this plugin to your build using the plugins DSL:
plugins {
id("io.suprgames.serverless-kdsl-plugin") version "0.0.1-SNAPSHOT"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("io.suprgames.serverless-kdsl-plugin:io.suprgames.serverless-kdsl-plugin.gradle.plugin:0.0.1-SNAPSHOT") }
It can then be applied in the precompiled script plugin:plugins { id("io.suprgames.serverless-kdsl-plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.suprgames.serverless-kdsl-plugin:io.suprgames.serverless-kdsl-plugin.gradle.plugin:0.0.1-SNAPSHOT") } } apply(plugin = "io.suprgames.serverless-kdsl-plugin")
- Applying plugins to all subprojects .