com.github.gregwhitaker.flatbuffers
所有者: Greg Whitaker
从 Google FlatBuffers 架构生成代码的 Gradle 插件。
https://github.com/gregwhitaker/gradle-flatbuffers-plugin
来源:https://github.com/gregwhitaker/gradle-flatbuffers-plugin
使用 插件 DSL
plugins {
id("com.github.gregwhitaker.flatbuffers") version "1.0.2"
}
使用 旧版插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.gregwhitaker:gradle-flatbuffers-plugin:1.0.2")
}
}
apply(plugin = "com.github.gregwhitaker.flatbuffers")
使用 插件 DSL
plugins {
id "com.github.gregwhitaker.flatbuffers" version "1.0.2"
}
使用 旧版插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.gregwhitaker:gradle-flatbuffers-plugin:1.0.2"
}
}
apply plugin: "com.github.gregwhitaker.flatbuffers"