Owner:
Sidorov
PoVerCat is a Gradle plugin that generates a kotlin class from a TOML based version catalog and distribute it as a dependency.
Version 1.0.0-RC1 (latest)
Created 26 July 2026.
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 "1.0.0-RC1"
}
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:1.0.0-RC1") }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:1.0.0-RC1") } } apply(plugin = "com.the13haven.povercat") - Applying plugins to all subprojects .