Search Gradle plugins

org.apache.gora

Gradle plugin for generating Gora beans for Avro schemas

http://gora.apache.org

Sources: http://git.apache.org/gora.git

Version 0.9 (latest)

Created 16 August 2019.

Gradle plugin for generating Gora beans for Avro schemas

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.apache.gora") version "0.9"
}

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("org.apache.gora:org.apache.gora.gradle.plugin:0.9")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("org.apache.gora")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.apache.gora:org.apache.gora.gradle.plugin:0.9")
      }
    }
    
    apply(plugin = "org.apache.gora")
  • Applying plugins to all subprojects .