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)
0.8.0
Created 05 October 2024.
Gradle plugin to extract project classes dependency graph for using in Lobzik analysis pipeline
Using the plugins DSL:
plugins {
id("xyz.mishkun.lobzik-project") version "0.8.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("xyz.mishkun.lobzik:lobzik:0.8.0")
}
}
apply(plugin = "xyz.mishkun.lobzik-project")
Using the plugins DSL:
plugins {
id "xyz.mishkun.lobzik-project" version "0.8.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "xyz.mishkun.lobzik:lobzik:0.8.0"
}
}
apply plugin: "xyz.mishkun.lobzik-project"