搜索Gradle插件

com.github.smac89.flatbuffers

所有者: Chigozirim C.

Gradle插件,用于从Google FlatBuffers模式生成代码。https://github.com/netifi/gradle-flatbuffers-plugin的分支

https://github.com/smac89/gradle-flatbuffers-plugin

源代码: https://github.com/smac89/gradle-flatbuffers-plugin

版本 1.0.6 (最新版本)

1.0.6

创建于2019年11月29日。

Gradle插件,用于从Google FlatBuffers模式生成代码。https://github.com/netifi/gradle-flatbuffers-plugin的分支

使用插件DSL

plugins {
  id("com.github.smac89.flatbuffers") version "1.0.6"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.smac89:gradle-flatbuffers-plugin:1.0.6")
  }
}

apply(plugin = "com.github.smac89.flatbuffers")

使用插件DSL

plugins {
  id "com.github.smac89.flatbuffers" version "1.0.6"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.smac89:gradle-flatbuffers-plugin:1.0.6"
  }
}

apply plugin: "com.github.smac89.flatbuffers"

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