io.github.androa.gradle.plugin.avro
Owner:
André Roaldseth
Gradle plugin for generating Java classes from Avro schemas.
https://github.com/androa/gradle-plugin-avro
Sources: https://github.com/androa/gradle-plugin-avro
Version 0.0.12 (latest)
Created 11 April 2025.
Gradle plugin for generating Java classes from Avro schemas.
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.androa.gradle.plugin.avro") version "0.0.12"
}
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.androa.gradle.plugin.avro:io.github.androa.gradle.plugin.avro.gradle.plugin:0.0.12") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.androa.gradle.plugin.avro") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.androa.gradle.plugin.avro:io.github.androa.gradle.plugin.avro.gradle.plugin:0.0.12") } } apply(plugin = "io.github.androa.gradle.plugin.avro")
- Applying plugins to all subprojects .