Search Gradle plugins

com.commercehub.gradle.plugin.avro-base

A Gradle plugin to allow easily performing Java code generation for Apache Avro. It supports JSON schema declaration files, JSON protocol declaration files, and Avro IDL files.

https://github.com/davidmc24/gradle-avro-plugin

Sources: https://github.com/commercehub-oss/gradle-avro-plugin

Version 0.9.0

0.9.0

Created 02 June 2016.

A Gradle plugin to allow easily performing Java code generation for Apache Avro. It supports JSON schema declaration files, JSON protocol declaration files, and Avro IDL files.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.commercehub.gradle.plugin.avro-base") version "0.9.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.commercehub.gradle.plugin:gradle-avro-plugin:0.9.0")
      }
    }
    
    apply(plugin = "com.commercehub.gradle.plugin.avro-base")
  • Applying plugins to all subprojects .