Search Gradle plugins

io.suprgames.serverless-kdsl-plugin

Plugin that will generate the Serverless Framework file entries for annotated functions with Serverless K-DSL

https://suprgames.io

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

Using the plugins DSL:

plugins {
  id("io.suprgames.serverless-kdsl-plugin") version "0.0.1-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.io.suprgames:serverless-kdsl-gradle-plugin:0.0.1-SNAPSHOT")
  }
}

apply(plugin = "io.suprgames.serverless-kdsl-plugin")

Using the plugins DSL:

plugins {
  id "io.suprgames.serverless-kdsl-plugin" version "0.0.1-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.io.suprgames:serverless-kdsl-gradle-plugin:0.0.1-SNAPSHOT"
  }
}

apply plugin: "io.suprgames.serverless-kdsl-plugin"

Learn how to apply plugins to subprojects