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.7.0

0.7.0

Created 03 November 2015.

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.7.0"
}

See also:

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