com.rickbusarow.module-check
Owner: Rick Busarow
Fast dependency graph validation for gradle
https://github.com/RBusarow/ModuleCheck
Sources: https://github.com/RBusarow/ModuleCheck
Version 0.12.5 (latest)
Created 07 February 2023.
Fast dependency graph validation for gradle
Add this plugin to your build using the plugins DSL:
plugins {
id("com.rickbusarow.module-check") version "0.12.5"
}
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.rickbusarow.module-check:com.rickbusarow.module-check.gradle.plugin:0.12.5") }
It can then be applied in the precompiled script plugin:plugins { id("com.rickbusarow.module-check") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.rickbusarow.module-check:com.rickbusarow.module-check.gradle.plugin:0.12.5") } } apply(plugin = "com.rickbusarow.module-check")
- Applying plugins to all subprojects .