io.github.bkmbigo.epit
Owner:
Brian Mbigo
The Plugins adds type-safe dependency declarations to your kotlin build scripts
https://www.github.com/bkmbigo/epit
Sources: https://www.github.com/bkmbigo/epit
Version 2023.12.00-beta
Created 03 December 2023.
The Plugins adds type-safe dependency declarations to your kotlin build scripts
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.bkmbigo.epit") version "2023.12.00-beta"
}
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("io.github.bkmbigo.epit:io.github.bkmbigo.epit.gradle.plugin:2023.12.00-beta") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.bkmbigo.epit") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.bkmbigo.epit:io.github.bkmbigo.epit.gradle.plugin:2023.12.00-beta") } } apply(plugin = "io.github.bkmbigo.epit")
- Applying plugins to all subprojects .