搜索 Gradle 插件

版本 1.0.0-SNAPSHOT(最新版)

1.0.0-SNAPSHOT

创建于 2018年7月31日。

Gradle for SwaggerHub 插件

使用 插件 DSL

plugins {
  id("io.github.jsfrench.swaggerhub") version "1.0.0-SNAPSHOT"
}

使用 传统插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.io.github.jsfrench:swaggerhub:1.0.0-SNAPSHOT")
  }
}

apply(plugin = "io.github.jsfrench.swaggerhub")

使用 插件 DSL

plugins {
  id "io.github.jsfrench.swaggerhub" version "1.0.0-SNAPSHOT"
}

使用 传统插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.io.github.jsfrench:swaggerhub:1.0.0-SNAPSHOT"
  }
}

apply plugin: "io.github.jsfrench.swaggerhub"

了解如何将插件应用于子项目