com.github.gregwhitaker.flatbuffers
Owner: Greg Whitaker
Gradle plugin for generating code from Google FlatBuffers schemas.
https://github.com/gregwhitaker/gradle-flatbuffers-plugin
Sources: https://github.com/gregwhitaker/gradle-flatbuffers-plugin
Version 1.0.2 (latest)
1.0.2
Created 15 June 2017.
Gradle plugin for generating code from Google FlatBuffers schemas.
Using the plugins DSL:
plugins {
id("com.github.gregwhitaker.flatbuffers") version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.gregwhitaker:gradle-flatbuffers-plugin:1.0.2")
}
}
apply(plugin = "com.github.gregwhitaker.flatbuffers")
Using the plugins DSL:
plugins {
id "com.github.gregwhitaker.flatbuffers" version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.gregwhitaker:gradle-flatbuffers-plugin:1.0.2"
}
}
apply plugin: "com.github.gregwhitaker.flatbuffers"