Search Gradle plugins

Version 1.0.5

1.0.5

Created 18 August 2021.

Generates sources from avro definitions

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.sksamuel.avropoet") version "1.0.5"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.sksamuel.avropoet:avropoet-gradle:1.0.5")
      }
    }
    
    apply(plugin = "com.sksamuel.avropoet")
  • Applying plugins to all subprojects .