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)
Created 13 December 2022.
Generates Java and/or Kotlin sources from .thrift files
Add this plugin to your build using the plugins DSL:
plugins {
id("com.microsoft.thrifty") version "3.1.0"
}
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.microsoft.thrifty:com.microsoft.thrifty.gradle.plugin:3.1.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.microsoft.thrifty") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.microsoft.thrifty:com.microsoft.thrifty.gradle.plugin:3.1.0") } } apply(plugin = "com.microsoft.thrifty")
- Applying plugins to all subprojects .