搜索Gradle插件

版本 3.1.0 (最新版)

3.1.0

创建于2022年12月13日。

从.thrift文件生成Java和/或Kotlin源代码

使用插件的DSL

plugins {
  id("com.microsoft.thrifty") version "3.1.0"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.microsoft.thrifty:thrifty-gradle-plugin:3.1.0")
  }
}

apply(plugin = "com.microsoft.thrifty")

使用插件的DSL

plugins {
  id "com.microsoft.thrifty" version "3.1.0"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.microsoft.thrifty:thrifty-gradle-plugin:3.1.0"
  }
}

apply plugin: "com.microsoft.thrifty"

了解如何将插件应用到子项目中