Search Gradle plugins

Version 3.1.0-RC02

Created 07 June 2022.

Generates Java and/or Kotlin sources from .thrift files

Using the plugins DSL:

plugins {
  id("com.microsoft.thrifty") version "3.1.0-RC02"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.microsoft.thrifty:thrifty-gradle-plugin:3.1.0-RC02")
  }
}

apply(plugin = "com.microsoft.thrifty")

Using the plugins DSL:

plugins {
  id "com.microsoft.thrifty" version "3.1.0-RC02"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.microsoft.thrifty:thrifty-gradle-plugin:3.1.0-RC02"
  }
}

apply plugin: "com.microsoft.thrifty"

Learn how to apply plugins to subprojects