io.kotless
Owner: Vladislav Tankov
Kotlin Serverless Framework
https://github.com/JetBrains/kotless
Sources: https://github.com/JetBrains/kotless
Version 0.1.7-beta-5 (latest)
0.1.7-beta-5
Created 01 February 2021.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
Kotlin Serverless Framework
Using the plugins DSL:
plugins {
id("io.kotless") version "0.1.7-beta-5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.kotless:gradle:0.1.7-beta-5")
}
}
apply(plugin = "io.kotless")
Using the plugins DSL:
plugins {
id "io.kotless" version "0.1.7-beta-5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.kotless:gradle:0.1.7-beta-5"
}
}
apply plugin: "io.kotless"