搜索Gradle插件

版本 0.5(最新版)

0.5

创建于2018年3月5日。

此实验性插件为使用Serverless Framework的项目模拟AWS API Gateway

使用插件DSL

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

使用旧插件应用程序

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

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

使用插件DSL

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

使用旧插件应用程序

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

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

学习如何将插件应用到子项目中