Search Gradle plugins

com.github.smac89.flatbuffers

Gradle plugin for generating code from Google FlatBuffers schemas. Fork of https://github.com/netifi/gradle-flatbuffers-plugin

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

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

Version 1.0.6 (latest)

1.0.6

Created 29 November 2019.

Gradle plugin for generating code from Google FlatBuffers schemas. Fork of https://github.com/netifi/gradle-flatbuffers-plugin

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects