com.commercehub.gradle.plugin.avro-base
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
Sources: https://github.com/commercehub-oss/gradle-avro-plugin
Version 0.99.99 (latest)
Created 10 February 2021.
A Gradle plugin to allow easily performing Java code generation for Apache Avro. Versions published to the Gradle Plugin Portal are obsolete. For up-to-date versions, please see https://github.com/davidmc24/gradle-avro-plugin
Add this plugin to your build using the plugins DSL:
plugins {
id("com.commercehub.gradle.plugin.avro-base") version "0.99.99"
}
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("com.commercehub.gradle.plugin.avro-base:com.commercehub.gradle.plugin.avro-base.gradle.plugin:0.99.99") }
It can then be applied in the precompiled script plugin:plugins { id("com.commercehub.gradle.plugin.avro-base") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.commercehub.gradle.plugin.avro-base:com.commercehub.gradle.plugin.avro-base.gradle.plugin:0.99.99") } } apply(plugin = "com.commercehub.gradle.plugin.avro-base")
- Applying plugins to all subprojects .