io.github.leofuso.argo
Owner: Leonardo Fuso Nuzzo
A Gradle plugin aimed to help working with Apache Avro.It supports code generation for JSON schema declaration files(.avsc),JSON protocol declaration files(.avpr), and Avro IDL files.In the future, it should support Schema Registry integration, as well."
https://github.com/LeoFuso/argo
Sources: https://github.com/LeoFuso/argo
Version 0.1.4 (latest)
0.1.4
Created 23 March 2023.
A Gradle Plugin that supports Java code generation from JSON schema declaration files(.avsc),
JSON protocol declaration files(.avpr), and Avro IDL(.avdl) source files
Using the plugins DSL:
plugins {
id("io.github.leofuso.argo") version "0.1.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.leofuso.argo:argo-plugin:0.1.4")
}
}
apply(plugin = "io.github.leofuso.argo")
Using the plugins DSL:
plugins {
id "io.github.leofuso.argo" version "0.1.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.leofuso.argo:argo-plugin:0.1.4"
}
}
apply plugin: "io.github.leofuso.argo"