Search Gradle plugins

io.flamingock.MetadataBundler

The `flamingock-metadata-generator` Gradle pluginc collects Flamingock's metadata during compilation by integrating the annotation processor. This plugin is designed to automate the process of gathering relevant data from annotated code elements.

https://github.com/mongock/flamingock-metadata-generator

Sources: https://github.com/mongock/flamingock-metadata-generator.git

Version 0.0.4-beta (latest)

Created 16 December 2024.

The `flamingock-metadata-generator` Gradle pluginc collects Flamingock's metadata during compilation by integrating the annotation processor. This plugin is designed to automate the process of gathering relevant data from annotated code elements.

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.flamingock.MetadataBundler") version "0.0.4-beta"
}

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