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.4 (latest)

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

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("io.github.leofuso.argo:io.github.leofuso.argo.gradle.plugin:0.1.4")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.github.leofuso.argo")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.leofuso.argo:io.github.leofuso.argo.gradle.plugin:0.1.4")
      }
    }
    
    apply(plugin = "io.github.leofuso.argo")
  • Applying plugins to all subprojects .