com.microsoft.thrifty
Owner: Ben Bader
Generates Java and/or Kotlin sources from .thrift files
https://github.com/microsoft/thrifty
Sources: https://github.com/microsoft/thrifty.git
Version 3.1.0 (latest)
3.1.0
Created 13 December 2022.
Generates Java and/or Kotlin sources from .thrift files
Using the plugins DSL:
plugins {
id("com.microsoft.thrifty") version "3.1.0"
}
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")
}
}
apply(plugin = "com.microsoft.thrifty")
Using the plugins DSL:
plugins {
id "com.microsoft.thrifty" version "3.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.microsoft.thrifty:thrifty-gradle-plugin:3.1.0"
}
}
apply plugin: "com.microsoft.thrifty"