Search Gradle plugins

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"

Learn how to apply plugins to subprojects