Search Gradle plugins

Version 1.0.0.M5.DEPRECATED (latest)

Created 15 June 2020.

Deprecated. Superseded by com.github.hauner.openapi-processor. (plugin to run openapi-generatr-x generators, e.g. openapi-generatr-spring (requires gradle 5.2+)).

Using the plugins DSL:

plugins {
  id("com.github.hauner.openapi-generatr") version "1.0.0.M5.DEPRECATED"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.hauner.openapi:openapi-generatr-gradle:1.0.0.M5.DEPRECATED")
  }
}

apply(plugin = "com.github.hauner.openapi-generatr")

Using the plugins DSL:

plugins {
  id "com.github.hauner.openapi-generatr" version "1.0.0.M5.DEPRECATED"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.hauner.openapi:openapi-generatr-gradle:1.0.0.M5.DEPRECATED"
  }
}

apply plugin: "com.github.hauner.openapi-generatr"

Learn how to apply plugins to subprojects