Search Gradle plugins

com.github.hauner.openapi-processor

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)

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+)).

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.github.hauner.openapi-processor:com.github.hauner.openapi-processor.gradle.plugin:1.0.0.M8.DEPRECATED")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.github.hauner.openapi-processor")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.hauner.openapi-processor:com.github.hauner.openapi-processor.gradle.plugin:1.0.0.M8.DEPRECATED")
      }
    }
    
    apply(plugin = "com.github.hauner.openapi-processor")
  • Applying plugins to all subprojects .