net.bitsandbobs.kradle-lib
Owner: Markus Opitz
Swiss army knife for Kotlin development
https://github.com/mrkuz/kradle/tree/stable
Sources: https://github.com/mrkuz/kradle
Version 2.5.0 (latest)
Created 01 November 2023.
Swiss army knife for Kotlin/JVM development (deprecated, consider using 'net.bitsandbobs.kradle' instead)
Add this plugin to your build using the plugins DSL:
plugins {
id("net.bitsandbobs.kradle-lib") version "2.5.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("net.bitsandbobs.kradle-lib:net.bitsandbobs.kradle-lib.gradle.plugin:2.5.0") }
It can then be applied in the precompiled script plugin:plugins { id("net.bitsandbobs.kradle-lib") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("net.bitsandbobs.kradle-lib:net.bitsandbobs.kradle-lib.gradle.plugin:2.5.0") } } apply(plugin = "net.bitsandbobs.kradle-lib")
- Applying plugins to all subprojects .