Search Gradle plugins

Version 1.2.0

Created 31 July 2019.

A Gradle plugin to generate networking code from Swagger Specs

Using the plugins DSL:

plugins {
  id("com.yelp.codegen.plugin") version "1.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.yelp.codegen:plugin:1.2.0")
  }
}

apply(plugin = "com.yelp.codegen.plugin")

Using the plugins DSL:

plugins {
  id "com.yelp.codegen.plugin" version "1.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.yelp.codegen:plugin:1.2.0"
  }
}

apply plugin: "com.yelp.codegen.plugin"

Learn how to apply plugins to subprojects