Search Gradle plugins

Using the plugins DSL:

plugins {
  id("com.linkedin.python-flyer") version "0.3.24"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.linkedin.pygradle:pygradle-plugin:0.3.24")
  }
}

apply(plugin = "com.linkedin.python-flyer")

Using the plugins DSL:

plugins {
  id "com.linkedin.python-flyer" version "0.3.24"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.linkedin.pygradle:pygradle-plugin:0.3.24"
  }
}

apply plugin: "com.linkedin.python-flyer"

Learn how to apply plugins to subprojects