Search Gradle plugins

xyz.mishkun.lobzik-project

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.3.0

Created 08 May 2023.

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.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("xyz.mishkun.lobzik:lobzik:0.3.0")
  }
}

apply(plugin = "xyz.mishkun.lobzik-project")

Using the plugins DSL:

plugins {
  id "xyz.mishkun.lobzik-project" version "0.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "xyz.mishkun.lobzik:lobzik:0.3.0"
  }
}

apply plugin: "xyz.mishkun.lobzik-project"

Learn how to apply plugins to subprojects