Search Gradle plugins

Version 2.0.0

2.0.0

Created 27 September 2024.

Automatically generate a Gradle version catalog from a BOM

Add this plugin to your build using the plugins DSL:

plugins {
  id("dev.aga.gradle.version-catalog-generator") version "2.0.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("dev.aga.gradle.plugin:plugin:2.0.0")
      }
    }
    
    apply(plugin = "dev.aga.gradle.version-catalog-generator")
  • Applying plugins to all subprojects .