com.github.hauner.openapi-processor
Owner: Martin Hauner
plugin to run openapi-processor-*, e.g. openapi-processor-spring (requires gradle 5.2+)
https://github.com/hauner/openapi-processor-gradle
Sources: https://github.com/hauner/openapi-processor-gradle
Version 1.0.0.M8.DEPRECATED (latest)
1.0.0.M8.DEPRECATED
Created 14 November 2020.
Deprecated. Superseded by io.openapiprocessor.openapi-processor. (plugin to run openapi-processor-*, e.g. openapi-processor-spring (requires gradle 5.2+)).
Using the plugins DSL:
plugins {
id("com.github.hauner.openapi-processor") version "1.0.0.M8.DEPRECATED"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.hauner.openapi:openapi-processor-gradle:1.0.0.M8.DEPRECATED")
}
}
apply(plugin = "com.github.hauner.openapi-processor")
Using the plugins DSL:
plugins {
id "com.github.hauner.openapi-processor" version "1.0.0.M8.DEPRECATED"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.hauner.openapi:openapi-processor-gradle:1.0.0.M8.DEPRECATED"
}
}
apply plugin: "com.github.hauner.openapi-processor"