com.commercehub.gradle.plugin.avro
Owner:
David M. Carr
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
Version 0.9.1
Created 13 October 2017.
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. For the latest versions, please see https://bintray.com/commercehub-oss/main/gradle-avro-plugin
Using the plugins DSL:
plugins {
id("com.commercehub.gradle.plugin.avro") version "0.9.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.commercehub.gradle.plugin:gradle-avro-plugin:0.9.1")
}
}
apply(plugin = "com.commercehub.gradle.plugin.avro")
Using the plugins DSL:
plugins {
id "com.commercehub.gradle.plugin.avro" version "0.9.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.commercehub.gradle.plugin:gradle-avro-plugin:0.9.1"
}
}
apply plugin: "com.commercehub.gradle.plugin.avro"