Search Gradle plugins

io.dreampie.thrift

Owner: Dreampie

A gradle plugin for compiling Thrift IDL files using thrift compiler

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

Sources: null

Version 0.5.5 (latest)

0.5.5

Created 24 January 2017.

A gradle plugin for compiling Thrift IDL files using thrift compiler

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.dreampie.thrift") version "0.5.5"
}

See also:

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