com.the13haven.povercat
Owner:
Sidorov
PoVerCat is a Gradle plugin that generates a kotlin class from a TOML based version catalog and distribute it as a dependency.
https://github.com/the13haven/povercat-plugin
Sources: https://github.com/the13haven/povercat-plugin
Version 0.1.0 (latest)
Created 19 April 2025.
PoVerCat is a Gradle plugin that generates a kotlin class from a TOML based version catalog and distribute it as a dependency.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.the13haven.povercat") version "0.1.0"
}
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("com.the13haven.povercat:com.the13haven.povercat.gradle.plugin:0.1.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.the13haven.povercat") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.the13haven.povercat:com.the13haven.povercat.gradle.plugin:0.1.0") } } apply(plugin = "com.the13haven.povercat")
- Applying plugins to all subprojects .