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.3.4
Created 17 November 2014.
* Fix registration of generated sources for compilation (#8)
* Change classloader handling to better support import of external dependencies (#9)
* Change classloader handling to better support import of external dependencies (#9)
Using the plugins DSL:
plugins {
id("com.commercehub.gradle.plugin.avro") version "0.3.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.commercehub.gradle.plugin:gradle-avro-plugin:0.3.4")
}
}
apply(plugin = "com.commercehub.gradle.plugin.avro")
Using the plugins DSL:
plugins {
id "com.commercehub.gradle.plugin.avro" version "0.3.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.commercehub.gradle.plugin:gradle-avro-plugin:0.3.4"
}
}
apply plugin: "com.commercehub.gradle.plugin.avro"