Search Gradle plugins

com.github.Azim.azimdp

Owner: Dmitrii

This plugin allows you to generate a json file with the list of dependencies used in your project

https://github.com/Azim

Sources: https://github.com/Azim/AzimDP

Version 1.0.0 (latest)

Created 27 November 2020.

This plugin allows you to generate a json file with the list of dependencies used in your project

Using the plugins DSL:

plugins {
  id("com.github.Azim.azimdp") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.Azim:azimdp-gradle-plugin:1.0.0")
  }
}

apply(plugin = "com.github.Azim.azimdp")

Using the plugins DSL:

plugins {
  id "com.github.Azim.azimdp" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.Azim:azimdp-gradle-plugin:1.0.0"
  }
}

apply plugin: "com.github.Azim.azimdp"

Learn how to apply plugins to subprojects