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 2.1.1-SNAPSHOT
Created 09 June 2020.
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 "2.1.1-SNAPSHOT"
}
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:2.1.1-SNAPSHOT") }
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:2.1.1-SNAPSHOT") } } apply(plugin = "com.microsoft.thrifty")
- Applying plugins to all subprojects .