Search Gradle plugins

me.clutchy.dependenciesgen

Gradle plugin that takes all the dependencies of a project and puts them into a single file.

https://clutchy.me/

Sources: https://github.com/xIGBClutchIx/DependenciesGen

Version 1.0.8 (latest)

Created 31 May 2022.

Gradle plugin that takes all the dependencies of a project and puts them into a single file.

Using the plugins DSL:

plugins {
  id("me.clutchy.dependenciesgen") version "1.0.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("me.clutchy:DependenciesGen:1.0.8")
  }
}

apply(plugin = "me.clutchy.dependenciesgen")

Using the plugins DSL:

plugins {
  id "me.clutchy.dependenciesgen" version "1.0.8"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "me.clutchy:DependenciesGen:1.0.8"
  }
}

apply plugin: "me.clutchy.dependenciesgen"

Learn how to apply plugins to subprojects