Search Gradle plugins

de.felixlf.libs-catalog-generator

This plugin generates a file to access from a buildSrc or convention plugin source files in a type-safe way, the libs, plugins and versions from a version catalog

https://github.com/felix-leyva/catalog-generator

Sources: https://github.com/felix-leyva/catalog-generator

Version 1.1 (latest)

1.1

Created 15 October 2024.

This plugin generates a file to access from a buildSrc or convention plugin source files in a type-safe way, the libs, plugins and versions from a version catalog

Add this plugin to your build using the plugins DSL:

plugins {
  id("de.felixlf.libs-catalog-generator") version "1.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("de.felixlf:catalogGenerator:1.1")
      }
    }
    
    apply(plugin = "de.felixlf.libs-catalog-generator")
  • Applying plugins to all subprojects .