io.github.trueangle.plugin.lambda
Owner:
Ivanovichev
A plugin to streamline the development of Kotlin Native AWS Lambda functions
https://github.com/trueangle/kotlin-native-aws-lambda-runtime
Sources: https://github.com/trueangle/kotlin-native-aws-lambda-runtime.git
Version 0.0.1
Created 17 September 2024.
A plugin to streamline the development of Kotlin Native AWS Lambda functions
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.trueangle.plugin.lambda") version "0.0.1"
}
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.github.trueangle.plugin.lambda:io.github.trueangle.plugin.lambda.gradle.plugin:0.0.1") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.trueangle.plugin.lambda") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.trueangle.plugin.lambda:io.github.trueangle.plugin.lambda.gradle.plugin:0.0.1") } } apply(plugin = "io.github.trueangle.plugin.lambda")
- Applying plugins to all subprojects .