Search Gradle plugins

Version 0.4

Created 05 March 2018.

This experimental plugin simulates AWS API Gateway for projects using the Serverless Framework

Using the plugins DSL:

plugins {
  id("com.bytekast.serverless-local-apigateway") version "0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.bytekast:serverless-local-apigateway:0.4")
  }
}

apply(plugin = "com.bytekast.serverless-local-apigateway")

Using the plugins DSL:

plugins {
  id "com.bytekast.serverless-local-apigateway" version "0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.bytekast:serverless-local-apigateway:0.4"
  }
}

apply plugin: "com.bytekast.serverless-local-apigateway"

Learn how to apply plugins to subprojects