elect86.buildSrc-catalog
Owner: Giuseppe Barbieri
it generates automatically a catalog-like for the buildSrc scripts
https://github.com/elect86/buildSrc-catalog
Sources: https://github.com/elect86/buildSrc-catalog.git
Version 0.0.01 (latest)
Created 24 September 2024.
it generates automatically a catalog-like for the buildSrc scripts
Add this plugin to your build using the plugins DSL:
plugins {
id("elect86.buildSrc-catalog") version "0.0.01"
}
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("elect86.buildSrc-catalog:elect86.buildSrc-catalog.gradle.plugin:0.0.01") }
It can then be applied in the precompiled script plugin:plugins { id("elect86.buildSrc-catalog") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("elect86.buildSrc-catalog:elect86.buildSrc-catalog.gradle.plugin:0.0.01") } } apply(plugin = "elect86.buildSrc-catalog")
- Applying plugins to all subprojects .