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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("de.felixlf:catalogGenerator:1.1")
  }
}

apply(plugin = "de.felixlf.libs-catalog-generator")

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "de.felixlf:catalogGenerator:1.1"
  }
}

apply plugin: "de.felixlf.libs-catalog-generator"

Learn how to apply plugins to subprojects