搜索Gradle插件

版本 1.1.4(最新版)

1.1.4

创建于2020年11月11日。

使用Gradle创建Swagger文档的插件

使用插件DSL

plugins {
  id("com.github.wakingrufus.swagger") version "1.1.4"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.wakingrufus:plugin:1.1.4")
  }
}

apply(plugin = "com.github.wakingrufus.swagger")

使用插件DSL

plugins {
  id "com.github.wakingrufus.swagger" version "1.1.4"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.wakingrufus:plugin:1.1.4"
  }
}

apply plugin: "com.github.wakingrufus.swagger"

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