Search Gradle plugins

xyz.mishkun.lobzik

Lobzik is a gradle plugin designed to help Android developers chop their monolithic codebases into smaller pieces. It gathers data about dependency graph and runs Louvain algorithm to split it into modules

https://github.com/Mishkun/lobzik

Sources: https://github.com/Mishkun/lobzik

Version 0.7.0 (latest)

Created 09 July 2023.

Lobzik is a gradle plugin designed to help Android developers chop their monolithic codebases into smaller pieces. It gathers data about dependency graph and runs Louvain algorithm to split it into modules

Using the plugins DSL:

plugins {
  id("xyz.mishkun.lobzik") version "0.7.0"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "xyz.mishkun.lobzik" version "0.7.0"
}

Using legacy plugin application:

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

apply plugin: "xyz.mishkun.lobzik"

Learn how to apply plugins to subprojects