Search Gradle plugins

org.jruyi.thrift

A gradle plugin for compiling Thrift IDL files using thrift compiler

https://github.com/jruyi/thrift-gradle-plugin

Version 0.4.2 (latest)

0.4.2

Created 24 April 2021.

A gradle plugin for compiling Thrift IDL files using thrift compiler

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.jruyi.thrift") version "0.4.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.org.jruyi.gradle:thrift-gradle-plugin:0.4.2")
      }
    }
    
    apply(plugin = "org.jruyi.thrift")
  • Applying plugins to all subprojects .