xyz.mishkun.lobzik-project
Owner: Mikhail Levchenko
Gradle plugin to extract project classes dependency graph for using in Lobzik analysis pipeline
https://github.com/Mishkun/lobzik
Sources: https://github.com/Mishkun/lobzik
Version 0.8.0 (latest)
Created 05 October 2024.
Gradle plugin to extract project classes dependency graph for using in Lobzik analysis pipeline
Add this plugin to your build using the plugins DSL:
plugins {
id("xyz.mishkun.lobzik-project") version "0.8.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("xyz.mishkun.lobzik-project:xyz.mishkun.lobzik-project.gradle.plugin:0.8.0") }
It can then be applied in the precompiled script plugin:plugins { id("xyz.mishkun.lobzik-project") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("xyz.mishkun.lobzik-project:xyz.mishkun.lobzik-project.gradle.plugin:0.8.0") } } apply(plugin = "xyz.mishkun.lobzik-project")
- Applying plugins to all subprojects .