Search Gradle plugins

io.github.b7woreo.gradle-assistant

A plugin that helps you analyze dependencies of project, task, configuration

https://github.com/b7woreo/GradleAssistant

Sources: https://github.com/b7woreo/GradleAssistant

Version 0.0.5

0.0.5

Created 26 May 2023.

A plugin that helps you analyze dependencies of project, task, configuration

Using the plugins DSL:

plugins {
  id("io.github.b7woreo.gradle-assistant") version "0.0.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.b7woreo:plugin:0.0.5")
  }
}

apply(plugin = "io.github.b7woreo.gradle-assistant")

Using the plugins DSL:

plugins {
  id "io.github.b7woreo.gradle-assistant" version "0.0.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.b7woreo:plugin:0.0.5"
  }
}

apply plugin: "io.github.b7woreo.gradle-assistant"

Learn how to apply plugins to subprojects