Owner:
Felix Leyva
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
Version 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:
-
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("de.felixlf.libs-catalog-generator:de.felixlf.libs-catalog-generator.gradle.plugin:1.1") }It can then be applied in the precompiled script plugin:plugins { id("de.felixlf.libs-catalog-generator") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("de.felixlf.libs-catalog-generator:de.felixlf.libs-catalog-generator.gradle.plugin:1.1") } } apply(plugin = "de.felixlf.libs-catalog-generator") - Applying plugins to all subprojects .