io.github.jsfrench.swaggerhub
Owner: John French
Gradle Plugin for SwaggerHub
https://github.com/jsfrench/swaggerhub-gradle-plugin
Sources: scm:git@github.com:jsfrench/swaggerhub-gradle-plugin.git
Version 1.0.0-SNAPSHOT (latest)
1.0.0-SNAPSHOT
Created 31 July 2018.
Gradle Plugin for SwaggerHub
Using the plugins DSL:
plugins {
id("io.github.jsfrench.swaggerhub") version "1.0.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.io.github.jsfrench:swaggerhub:1.0.0-SNAPSHOT")
}
}
apply(plugin = "io.github.jsfrench.swaggerhub")
Using the plugins DSL:
plugins {
id "io.github.jsfrench.swaggerhub" version "1.0.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.io.github.jsfrench:swaggerhub:1.0.0-SNAPSHOT"
}
}
apply plugin: "io.github.jsfrench.swaggerhub"