Search Gradle plugins

io.github.leofuso.argo

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

Created 09 March 2023.

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.

Using the plugins DSL:

plugins {
  id("io.github.leofuso.argo") version "0.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.leofuso.argo:argo-plugin:0.1.1")
  }
}

apply(plugin = "io.github.leofuso.argo")

Using the plugins DSL:

plugins {
  id "io.github.leofuso.argo" version "0.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.leofuso.argo:argo-plugin:0.1.1"
  }
}

apply plugin: "io.github.leofuso.argo"

Learn how to apply plugins to subprojects